aboutsummaryrefslogtreecommitdiffstats
path: root/executor/test_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'executor/test_test.go')
-rw-r--r--executor/test_test.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/executor/test_test.go b/executor/test_test.go
new file mode 100644
index 000000000..86379b93b
--- /dev/null
+++ b/executor/test_test.go
@@ -0,0 +1,16 @@
+// Copyright 2016 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 executor
+
+import "testing"
+
+func TestKVM(t *testing.T) {
+ switch res := testKVM(); {
+ case res < 0:
+ t.Skip()
+ case res > 0:
+ t.Fail()
+ default:
+ }
+}