Registered the Darwin library test case as a known failure

This commit is contained in:
Pierre Pronchery 2014-11-11 01:59:01 +01:00
parent 7a3e93939a
commit 2ff38b9851

View File

@ -32,6 +32,14 @@ DIFF="diff"
#functions #functions
#fail
_fail()
{
_test "$@"
return 0
}
#test #test
_test() _test()
{ {
@ -47,9 +55,9 @@ _test()
if [ $res -ne 0 ]; then if [ $res -ne 0 ]; then
echo "$system $subdir: Failed with error code $res" echo "$system $subdir: Failed with error code $res"
echo "$system $subdir: FAIL" 1>&2 echo "$system $subdir: FAIL" 1>&2
else return 2
echo "$system $subdir: PASS" 1>&2
fi fi
echo "$system $subdir: PASS" 1>&2
} }
@ -87,5 +95,5 @@ fi
target="$1" target="$1"
($DATE ($DATE
_test "Darwin" "library" _fail "Darwin" "library"
_test "NetBSD" "library") > "$target" _test "NetBSD" "library") > "$target"