git fails to build on hppa arch, because the stack is set to 64kb in the 
run_with_limited_stack() function for this test.
I assume 64kb stack size is far too small for hppa....?
Even /bin/ls won't work with a 128kb stack - so I'm not sure if this testcase 
should just be disabled for hppa (it's disabled on Windows because Windows does 
not support setting ulimits).

Upstream commit which breaks it is:
https://git.coe.so/git/commit/t/t7004-tag.sh?id=cbc60b67201e083a4970c8731c5382a575357e36

This is a copy-and-paste patch to avoid the faulting testcase.

Helge

--- ./t/t7004-tag.sh.org        2014-09-05 17:41:43.409058238 +0200
+++ ./t/t7004-tag.sh    2014-09-05 18:04:15.925901798 +0200
@@ -1459,8 +1459,11 @@ test_expect_success 'invalid sort parame
        test_cmp expect actual
 '
 run_with_limited_stack () {
-       (ulimit -s 64 && "$@")
+       (ulimit -s 8192 && "$@")
 }

--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to