race_enabled_test.go 411 B

12345678910
  1. //go:build race
  2. package sharedspace
  3. // raceDetectorEnabled reports whether this test binary was built with the
  4. // race detector. The bundled boltdb v1.3.1 performs unsafe pointer
  5. // arithmetic that trips the race detector's checkptr instrumentation, so
  6. // database-backed tests skip themselves under -race (CI runs the full
  7. // suite without -race, where they always execute).
  8. const raceDetectorEnabled = true