summaryrefslogtreecommitdiffstats
path: root/jrt_test/src/tests/mandatory-methods/dotest.sh
diff options
context:
space:
mode:
Diffstat (limited to 'jrt_test/src/tests/mandatory-methods/dotest.sh')
-rw-r--r--jrt_test/src/tests/mandatory-methods/dotest.sh11
1 files changed, 6 insertions, 5 deletions
diff --git a/jrt_test/src/tests/mandatory-methods/dotest.sh b/jrt_test/src/tests/mandatory-methods/dotest.sh
index 6c7dfb2bbea..8cbd99c6988 100644
--- a/jrt_test/src/tests/mandatory-methods/dotest.sh
+++ b/jrt_test/src/tests/mandatory-methods/dotest.sh
@@ -1,15 +1,16 @@
#!/bin/bash
# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-set -e
-sh $BINREF/progctl.sh progdefs.sh start javaserver 1
+fail=0
-./jrt_test_extract-reflection_app tcp/localhost:$PORT_1 verbose > out.txt
+$BINREF/progctl.sh progdefs.sh start javaserver 1 || fail=1
-sh $BINREF/progctl.sh progdefs.sh stop javaserver 1
+./jrt_test_extract-reflection_app tcp/localhost:$PORT_1 verbose > out.txt || fail=1
+
+$BINREF/progctl.sh progdefs.sh stop javaserver 1 || fail=1
if diff -u out.txt ref.txt; then
- exit 0
+ exit $fail
else
exit 1
fi