Merge pull request #12936 from ethereum/fix-parallel-soltest-ci-runs-overwriting-xml-test-output

Prevent parallel soltest runs from overwriting each other's XML test output
This commit is contained in:
Kamil Śliwak 2022-04-14 15:02:42 +02:00 committed by GitHub
commit 559174054f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -74,7 +74,7 @@ do
BOOST_TEST_ARGS_RUN=(
"--color_output=no"
"--show_progress=yes"
"--logger=JUNIT,error,test_results/$(get_logfile_basename "$run").xml"
"--logger=JUNIT,error,test_results/$(get_logfile_basename "$((CPUs * CIRCLE_NODE_INDEX + run))").xml"
"${BOOST_TEST_ARGS[@]}"
)
SOLTEST_ARGS=("--evm-version=$EVM" "${SOLTEST_FLAGS[@]}")