We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec20162 commit c8cfcb0Copy full SHA for c8cfcb0
examples/singleapp/slice_is_not_threadsafe/Taskfile.yml
@@ -13,15 +13,13 @@ tasks:
13
silent: true
14
run-notrace:
15
cmds:
16
- - cmd: for i in {1..10} ; do go run notrace/main.go; done
+ - cmd: for i in {1..10} ; do go run -race notrace/main.go; done
17
18
run-notrace2:
19
20
- - cmd: for i in {1..10} ; do go run notrace2/main.go; done
+ - cmd: for i in {1..10} ; do go run -race notrace2/main.go; done
21
22
run-with-raceoption:
23
24
- cmd: go run -race race/main.go
25
ignore_error: true
26
- - go run -race notrace/main.go
27
- - go run -race notrace2/main.go
0 commit comments