summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtools/run-libcore-tests.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/run-libcore-tests.sh b/tools/run-libcore-tests.sh
index 240d63c6d3..2d39b2a9f8 100755
--- a/tools/run-libcore-tests.sh
+++ b/tools/run-libcore-tests.sh
@@ -157,7 +157,7 @@ fi
# timeout when being asked to run packages, and some tests go above
# the default timeout.
if $gcstress && $debug && $device_mode; then
- vogar_args="$vogar_args --timeout 960"
+ vogar_args="$vogar_args --timeout 1440"
else
vogar_args="$vogar_args --timeout 480"
fi
@@ -195,4 +195,7 @@ esac
# Run the tests using vogar.
echo "Running tests for the following test packages:"
echo ${working_packages[@]} | tr " " "\n"
-vogar $vogar_args $expectations $(cparg $DEPS) ${working_packages[@]}
+
+cmd="vogar $vogar_args $expectations $(cparg $DEPS) ${working_packages[@]}"
+echo "Running $cmd"
+eval $cmd