-
Notifications
You must be signed in to change notification settings - Fork 239
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
vendor: upgrade gofakes3 to v0.0.11 #472
Conversation
Upgraded gofakes version to v0.0.11 to solve unaligned bit error in 32 bit architectures. Updates #446
The flags of e2e package was not being parsed, so It always used the default values. To fix it, it will parse the flags in TestMain method. Add "test.race.disabled" flag to e2e. package to allow users to disable race flag. Updates #446
The commit 96b27c2 provides a way to solve the second problem of #446. Using
instead of e2e package is treated differently because only it has |
Since windows should not use race flag change the ci.yml accordingly.
With 96b27c2, e2e package request an environment variable (named S5CMD_TEST_DISABLE_RACE) to disable the race flag when compiling the test binary. So 2nd problem of #446 will be solved by using
Note: |
Remove white spaces.
Upgraded gofakes version to v0.0.11 to solve unaligned bit error in 32 bit architectures.
Allow disabling race flag (race flag is incompatible with
-buildmode=pie
)Fixes #446