diff options
Diffstat (limited to 'pkg/host/host_linux_test.go')
| -rw-r--r-- | pkg/host/host_linux_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/host/host_linux_test.go b/pkg/host/host_linux_test.go index e32fe09cc..9deda69bc 100644 --- a/pkg/host/host_linux_test.go +++ b/pkg/host/host_linux_test.go @@ -21,7 +21,7 @@ func TestLog(t *testing.T) { t.Fatal(err) } // Dump for manual inspection. - supp, err := DetectSupportedSyscalls(target) + supp, err := DetectSupportedSyscalls(target, "none") if err != nil { t.Skipf("skipping: %v", err) } @@ -54,7 +54,7 @@ func TestSupportedSyscalls(t *testing.T) { if err != nil { t.Fatal(err) } - supp, err := DetectSupportedSyscalls(target) + supp, err := DetectSupportedSyscalls(target, "none") if err != nil { t.Skipf("skipping: %v", err) } |
