aboutsummaryrefslogtreecommitdiffstats
path: root/executor/test.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2018-07-20 20:26:05 +0200
committerDmitry Vyukov <dvyukov@google.com>2018-07-24 12:04:27 +0200
commit9fe4bdc5f1037a409e82299f36117030114c7b94 (patch)
treed3d73c1f69ded8152436be47684a07baa0e7f6ec /executor/test.go
parentdb7957bc09bf5715d33e4c56b8614579aa94000a (diff)
executor: overhaul
Make as much code as possible shared between all OSes. In particular main is now common across all OSes. Make more code shared between executor and csource (in particular, loop function and threaded execution logic). Also make loop and threaded logic shared across all OSes. Make more posix/unix code shared across OSes (e.g. signal handling, pthread creation, etc). Plus other changes along similar lines. Also support test OS in executor (based on portable posix) and add 4 arches that cover all execution modes (fork server/no fork server, shmem/no shmem). This change paves way for testing of executor code and allows to preserve consistency across OSes and executor/csource.
Diffstat (limited to 'executor/test.go')
-rw-r--r--executor/test.go38
1 files changed, 0 insertions, 38 deletions
diff --git a/executor/test.go b/executor/test.go
deleted file mode 100644
index f318b5627..000000000
--- a/executor/test.go
+++ /dev/null
@@ -1,38 +0,0 @@
-// 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.
-
-//go:generate bash -c "gcc kvm_gen.cc kvm.S -o kvm_gen && ./kvm_gen > kvm.S.h && rm ./kvm_gen"
-
-// +build linux
-
-package executor
-
-// int test_copyin();
-// int test_csum_inet();
-// int test_csum_inet_acc();
-// int test_kvm();
-import "C"
-
-func testCopyin() int {
- return int(C.test_copyin())
-}
-
-func testCsumInet() int {
- return int(C.test_csum_inet())
-}
-
-func testCsumInetAcc() int {
- return int(C.test_csum_inet_acc())
-}
-
-func testKVM() int {
- return int(C.test_kvm())
-}
-
-// Prevent deadcode warnings:
-var (
- _ = testCopyin
- _ = testCsumInet
- _ = testCsumInetAcc
- _ = testKVM
-)