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.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/executor/test_test.go b/executor/test_test.go
index 86379b93b..f197dbf51 100644
--- a/executor/test_test.go
+++ b/executor/test_test.go
@@ -5,6 +5,16 @@ package executor
import "testing"
+func TestCopyin(t *testing.T) {
+ switch res := testCopyin(); {
+ case res < 0:
+ t.Skip()
+ case res > 0:
+ t.Fail()
+ default:
+ }
+}
+
func TestKVM(t *testing.T) {
switch res := testKVM(); {
case res < 0: