diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2018-09-16 11:36:38 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2018-09-17 10:59:06 +0200 |
| commit | fd85ed48854729938fad986fc81e1c57a667fb36 (patch) | |
| tree | c78639907db18d63da578c62800ecc9850a2290e /pkg/csource/csource_test.go | |
| parent | 2c2e5f7129ca5060ce1f8f46c37ce6ee3e88114a (diff) | |
pkg/runtest, pkg/csource: don't run tests on openbsd
The tests are currently broken on openbsd.
Diffstat (limited to 'pkg/csource/csource_test.go')
| -rw-r--r-- | pkg/csource/csource_test.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pkg/csource/csource_test.go b/pkg/csource/csource_test.go index 397ba4b28..8545efba8 100644 --- a/pkg/csource/csource_test.go +++ b/pkg/csource/csource_test.go @@ -7,6 +7,7 @@ import ( "fmt" "math/rand" "os" + "runtime" "strings" "testing" "time" @@ -16,6 +17,10 @@ import ( ) func TestGenerate(t *testing.T) { + switch runtime.GOOS { + case "openbsd": + t.Skipf("broken on %v", runtime.GOOS) + } t.Parallel() for _, target := range prog.AllTargets() { switch target.OS { |
