Skip to content

Commit

Permalink
test: chore: clean up some output
Browse files Browse the repository at this point in the history
  • Loading branch information
gkc committed Mar 27, 2024
1 parent 2a6e949 commit 8eb9ece
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/e2e_all/scripts/main.sh
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ done
if test "$testsToRun" = "all"; then
# shellcheck disable=SC2010
testsToRun=$(ls -1 "$testScriptsDir/tests" | grep -v "^noop$" | grep -v "^shared$")
logInfo "Will run all tests: $testsToRun"
logInfo "Will run all tests: $(tr -d "\n" <<< "$testsToRun")"
fi

export atDirectoryHost
Expand Down Expand Up @@ -161,7 +161,7 @@ export testRuntimeDir

"$testScriptsDir/common/cleanup_tmp_files.sh" -s

logInfo " --> will execute setup_binaries, start_daemons and tests [$testsToRun] with "
logInfo " --> will execute setup_binaries, start_daemons and run_tests with "
logInfo " testRootDir: $testRootDir"
logInfo " testRuntimeDir: $testRuntimeDir"
logInfo " testScriptsDir: $testScriptsDir"
Expand All @@ -170,7 +170,7 @@ logInfo " atDirectoryHost: $atDirectoryHost"
logInfo " daemonVersions: $daemonVersions"
logInfo " clientVersions: $clientVersions"
logInfo " commitId: $commitId"
logInfo " testsToRun: $testsToRun"
logInfo " testsToRun: $(tr -d "\n" <<< "$testsToRun")"

echo
logInfo "Calling setup_binaries.sh"
Expand Down

0 comments on commit 8eb9ece

Please sign in to comment.