mirror of
https://github.com/rclone/rclone
synced 2024-11-01 21:49:35 +01:00
7712a0e111
The race detector currently detects a race with len(chan) against close(chan). See: https://github.com/golang/go/issues/27070 Skip the tests which trip this bug under the race detector.
10 lines
282 B
Go
10 lines
282 B
Go
// +build race
|
|
|
|
// Package israce reports if the Go race detector is enabled.
|
|
//
|
|
// From https://stackoverflow.com/questions/44944959/how-can-i-check-if-the-race-detector-is-enabled-at-runtime
|
|
package israce
|
|
|
|
// Enabled reports if the race detector is enabled.
|
|
const Enabled = true
|