[Intel-gfx] [PATCH i-g-t 2/5] lib/tests: don't use hard error status to indicate test failure
Thomas Wood
thomas.wood at intel.com
Mon Nov 3 12:31:02 CET 2014
Signed-off-by: Thomas Wood <thomas.wood at intel.com>
---
lib/tests/igt_command_line.sh | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/lib/tests/igt_command_line.sh b/lib/tests/igt_command_line.sh
index 7e6ca67..5cf2584 100755
--- a/lib/tests/igt_command_line.sh
+++ b/lib/tests/igt_command_line.sh
@@ -48,20 +48,20 @@ for test in $TESTLIST; do
# check invalid option handling
echo " Checking invalid option handling..."
- ./$test --invalid-option 2> /dev/null && exit 99
+ ./$test --invalid-option 2> /dev/null && exit 1
# check valid options succeed
echo " Checking valid option handling..."
- ./$test --help > /dev/null || exit 99
+ ./$test --help > /dev/null || exit 1
# check --list-subtests works correctly
echo " Checking subtest enumeration..."
./$test --list-subtests > /dev/null
if [ $? -ne 0 -a $? -ne 79 ]; then
- exit 99
+ exit 1
fi
# check invalid subtest handling
echo " Checking invalid subtest handling..."
- ./$test --run-subtest invalid-subtest > /dev/null 2>&1 && exit 99
+ ./$test --run-subtest invalid-subtest > /dev/null 2>&1 && exit 1
done
--
2.1.0
More information about the Intel-gfx
mailing list