mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-27 13:20:34 +00:00
pkg/runtest, pkg/csource: don't run tests on openbsd
The tests are currently broken on openbsd.
This commit is contained in:
parent
2c2e5f7129
commit
fd85ed4885
@ -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 {
|
||||
|
@ -17,6 +17,10 @@ import (
|
||||
)
|
||||
|
||||
func Test(t *testing.T) {
|
||||
switch runtime.GOOS {
|
||||
case "openbsd":
|
||||
t.Skipf("broken on %v", runtime.GOOS)
|
||||
}
|
||||
for _, sysTarget := range targets.List["test"] {
|
||||
sysTarget1 := targets.Get(sysTarget.OS, sysTarget.Arch)
|
||||
t.Run(sysTarget1.Arch, func(t *testing.T) {
|
||||
|
Loading…
Reference in New Issue
Block a user