aboutsummaryrefslogtreecommitdiffstats
path: root/executor/test.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2018-03-08 18:48:26 +0100
committerDmitry Vyukov <dvyukov@google.com>2018-03-08 18:48:26 +0100
commit36d1c4540af3ef058d68092e41af05aa4a8c5eca (patch)
tree3657a5920e4b100749ccb9d2d555652e7b7e28e9 /executor/test.go
parent63ef857906766b3cafe4aebc43bc38edf42096c3 (diff)
all: fix gometalinter warnings
Fix typos, non-canonical code, remove dead code, etc.
Diffstat (limited to 'executor/test.go')
-rw-r--r--executor/test.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/executor/test.go b/executor/test.go
index 7bab3933c..f318b5627 100644
--- a/executor/test.go
+++ b/executor/test.go
@@ -28,3 +28,11 @@ func testCsumInetAcc() int {
func testKVM() int {
return int(C.test_kvm())
}
+
+// Prevent deadcode warnings:
+var (
+ _ = testCopyin
+ _ = testCsumInet
+ _ = testCsumInetAcc
+ _ = testKVM
+)