Skip to content

Commit eb43ecb

Browse files
fixup! Fix fall back to building test-runner if necessary
1 parent bdc84e4 commit eb43ecb

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

test/scripts/utils/lib.sh

+1-9
Original file line numberDiff line numberDiff line change
@@ -161,15 +161,7 @@ function run_tests_for_os {
161161
exit 1
162162
fi
163163

164-
if [ -n "${TEST_DIST_DIR+x}" ]; then
165-
if [ ! -x "${TEST_DIST_DIR%/}/test-runner" ]; then
166-
# executable_not_found_in_dist_error test-runner
167-
echo "**********************************"
168-
echo "* Building test runner"
169-
echo "**********************************"
170-
nice_time build_test_runner "$vm"
171-
fi
172-
164+
if [ -n "${TEST_DIST_DIR+x}" ] && [ -x "${TEST_DIST_DIR%/}/test-runner" ]; then
173165
echo "**********************************"
174166
echo "* Using test-runner in $TEST_DIST_DIR"
175167
echo "**********************************"

0 commit comments

Comments
 (0)