-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
remove gotestloghelper from core tests #15395
Conversation
AER Report: CI Core ran successfully ✅AER Report: Operator UI CI ran successfully ✅ |
… -json flag, remove gotestloghelper
@@ -3,26 +3,18 @@ set -o pipefail | |||
set +e | |||
|
|||
SCRIPT_PATH=`dirname "$0"`; SCRIPT_PATH=`eval "cd \"$SCRIPT_PATH\" && pwd"` | |||
OUTPUT_FILE="../output.txt" | |||
USE_TEE="${USE_TEE:-true}" | |||
OUTPUT_FILE=${OUTPUT_FILE:-"./output.txt"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This pathing has changed a bit, it used to be ‘../output.txt’ because this test cds into the deployment directory.
I think we need to keep it in the parent directory otherwise the artifact upload will not be able to find the output.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good catch, @erikburt!
tools/bin/go_core_race_tests
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lines 10 and 12 are both identical:
GORACE="log_path=$PWD/race" go test -race -shuffle on -timeout "$TIMEOUT" -count "$COUNT" $1 | cat > $OUTPUT_FILE
No description provided.