diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2024-06-10 11:06:32 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-06-11 05:18:24 +0000 |
| commit | a1d9c91febfe78c574f0fdb58ee59f23ac970440 (patch) | |
| tree | 796ef1c2b17382df405a4bc1e679c9ec9e065cbb /pkg | |
| parent | 2a003ea76245ebf8417137c75d95874a91d1a09f (diff) | |
executor: ignore kernel text addresses in comparisons
We ignore comparisons of kernel data/physical addresses b/c these
are not coming from user space. Ignore kernel text addresses
for the same reason.
Diffstat (limited to 'pkg')
| -rw-r--r-- | pkg/runtest/run_test.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/pkg/runtest/run_test.go b/pkg/runtest/run_test.go index 48e8b0cbd..dee047449 100644 --- a/pkg/runtest/run_test.go +++ b/pkg/runtest/run_test.go @@ -272,7 +272,6 @@ func testCover(t *testing.T, target *prog.Target) { {0x4321, 0xabcd1234}, {0x3333, 0}, {0, 0x3333}, - {0xc0dec0dec0de1000, 0xc0dec0dec0de0000}, {0xabcd, 0xda1a0010}, }, }, @@ -292,8 +291,6 @@ func testCover(t *testing.T, target *prog.Target) { {0x2222222222222222, 0x1111111111111111}, {0x4321, 0xffffabcd}, {0xc0dec0dec0de1000, 0xc0dec0dec0de0000}, - {0xc0de1000, 0xc0de0000}, - {0xc0de1022, 0xc0de0011}, }, }, // TODO: test max signal filtering and cover filter when syz-executor handles them. |
