vendor: upgrade gofakes3 to v0.0.11#472
vendor: upgrade gofakes3 to v0.0.11#472ilkinulas merged 6 commits intopeak:masterfrom kucukaslan:fix-446-unaligned-bit
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