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