mirror of
https://github.com/rclone/rclone.git
synced 2024-12-22 23:22:08 +01:00
build: add -race flag to integration tester test_all
This commit is contained in:
parent
a947f75d3b
commit
b3a1f66759
@ -286,6 +286,9 @@ func (r *Run) MakeTestBinary() {
|
||||
binaryName := r.BinaryName()
|
||||
log.Printf("%s: Making test binary %q", r.Path, binaryName)
|
||||
CmdLine := []string{"go", "test", "-c"}
|
||||
if *race {
|
||||
CmdLine = append(CmdLine, "-race")
|
||||
}
|
||||
if *dryRun {
|
||||
log.Printf("Not executing: %v", CmdLine)
|
||||
return
|
||||
|
@ -35,6 +35,7 @@ var (
|
||||
clean = flag.Bool("clean", false, "Instead of testing, clean all left over test directories")
|
||||
runOnly = flag.String("run", "", "Run only those tests matching the regexp supplied")
|
||||
timeout = flag.Duration("timeout", 60*time.Minute, "Maximum time to run each test for before giving up")
|
||||
race = flag.Bool("race", false, "If set run the tests under the race detector")
|
||||
configFile = flag.String("config", "fstest/test_all/config.yaml", "Path to config file")
|
||||
outputDir = flag.String("output", path.Join(os.TempDir(), "rclone-integration-tests"), "Place to store results")
|
||||
emailReport = flag.String("email", "", "Set to email the report to the address supplied")
|
||||
|
Loading…
Reference in New Issue
Block a user