syzkaller/sys/sys.go
Dmitry Vyukov 89a1588519 sys: disable trusty for now
It crashes pkg/csource tests because
it does not have syz_mmap syscall but tries to use it.
2018-11-08 20:14:05 -08:00

20 lines
685 B
Go

// Copyright 2017 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
package sys
import (
// Import all targets, so that users only need to import sys.
_ "github.com/google/syzkaller/sys/akaros/gen"
_ "github.com/google/syzkaller/sys/freebsd/gen"
_ "github.com/google/syzkaller/sys/fuchsia/gen"
_ "github.com/google/syzkaller/sys/linux/gen"
_ "github.com/google/syzkaller/sys/netbsd/gen"
_ "github.com/google/syzkaller/sys/openbsd/gen"
_ "github.com/google/syzkaller/sys/test/gen"
_ "github.com/google/syzkaller/sys/windows/gen"
)
// Emitted by Makefile.
var GitRevision string