diff options
Diffstat (limited to 'executor/test_test.go')
| -rw-r--r-- | executor/test_test.go | 10 |
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: |
