File: race_test.go

package info (click to toggle)
golang-github-zenazn-goji 1.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 464 kB
  • sloc: makefile: 3
file content (18 lines) | stat: -rw-r--r-- 300 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package listener

import (
	"runtime"
	"testing"
)

func init() {
	// Just to make sure we get some variety
	runtime.GOMAXPROCS(4 * runtime.NumCPU())
}

// Chosen by random die roll
const seed = 4611413766552969250

// This is mostly just fuzzing to see what happens.
func TestRace(t *testing.T) {
}