We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8c5bc25 + 21ec433 commit b807f83Copy full SHA for b807f83
.github/kokoro/steps/vtr-test.sh
@@ -45,7 +45,11 @@ echo "========================================"
45
echo "Running Tests"
46
echo "========================================"
47
export VPR_NUM_WORKERS=1
48
+
49
+set +e
50
./run_reg_test.py $VTR_TEST $VTR_TEST_OPTIONS -j$NUM_CORES
51
+TEST_RESULT=$?
52
+set -e
53
kill $MONITOR
54
55
@@ -70,3 +74,5 @@ if [[ $(du -s | cut -d $'\t' -f 1) -gt $(expr 1024 \* 1024 \* 90) ]]; then
70
74
echo "Working directory too large!"
71
75
exit 1
72
76
fi
77
78
+exit $TEST_RESULT
0 commit comments