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.
1 parent 304ddfb commit a7fcb47Copy full SHA for a7fcb47
bptestrunner/bluepill_batch_test_runner.template.sh
@@ -64,8 +64,9 @@ if [ -f "$BP_TEST_ESTIMATE_JSON" ]; then
64
TIME_ESTIMATE_ARG="--test-time-estimates-json $(basename "$BP_TEST_ESTIMATE_JSON")"
65
fi
66
67
-# Copy rule-generated test plan file to working folder
68
-cp "$BP_TEST_PLAN" $BP_WORKING_FOLDER
+# Expand $TEST_UNDECLARED_OUTPUTS_DIR in rule-generated test plan file
+# And copy it to working folder
69
+sed 's/$TEST_UNDECLARED_OUTPUTS_DIR/'"${TEST_UNDECLARED_OUTPUTS_DIR//\//\\/}"'/g' $BP_TEST_PLAN > $BP_WORKING_FOLDER/$BP_TEST_PLAN
70
BP_TEST_PLAN_ARG="$(basename "$BP_TEST_PLAN")"
71
72
# Copy bluepill and bp executables to working folder
0 commit comments