diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2024-06-27 08:05:05 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-06-27 07:46:15 +0000 |
| commit | 6ef39602f449b25d12299bddb48d9d1b56c4cbca (patch) | |
| tree | cebe7531f7334d8063cf02bc82eabae529132e81 /pkg/runtest/executor_test.go | |
| parent | 52ea34f88b0592c661d3ba1e7ca192292fe26582 (diff) | |
pkg/runtest: test feature detection
Fail some features in various ways for test OS,
and check that features are detected properly.
Diffstat (limited to 'pkg/runtest/executor_test.go')
| -rw-r--r-- | pkg/runtest/executor_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/runtest/executor_test.go b/pkg/runtest/executor_test.go index d6f9a8434..04d5b5969 100644 --- a/pkg/runtest/executor_test.go +++ b/pkg/runtest/executor_test.go @@ -61,7 +61,7 @@ func TestZlib(t *testing.T) { } executor := csource.BuildExecutor(t, target, "../..") source := queue.Plain() - startRpcserver(t, target, executor, source) + startRpcserver(t, target, executor, source, nil) r := rand.New(testutil.RandSource(t)) for i := 0; i < 10; i++ { data := testutil.RandMountImage(r) @@ -111,7 +111,7 @@ func TestExecutorCommonExt(t *testing.T) { t.Fatal(err) } source := queue.Plain() - startRpcserver(t, target, executor, source) + startRpcserver(t, target, executor, source, nil) req := &queue.Request{ Prog: p, ReturnError: true, |
