mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-23 19:39:40 +00:00
pkg/runtest: skip 32-bit tests in short mode
Fails on travis...
This commit is contained in:
parent
f557fcdfa6
commit
df7f6947ba
@ -31,6 +31,10 @@ func test(t *testing.T, sysTarget *targets.Target) {
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
if testing.Short() && target.PtrSize == 4 {
|
||||
// Building 32-bit binaries fails on travis (see comments in Makefile).
|
||||
t.Skip("skipping in short mode")
|
||||
}
|
||||
executor, err := csource.BuildFile(target, filepath.FromSlash("../../executor/executor.cc"))
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
|
Loading…
Reference in New Issue
Block a user