aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/csource
diff options
context:
space:
mode:
authorAlexander Potapenko <glider@google.com>2024-09-25 12:38:23 +0200
committerAlexander Potapenko <glider@google.com>2024-09-25 11:32:16 +0000
commitadae06769c56162e3d390c755852880254b46741 (patch)
tree526abbe0300307edf37bf7354c451c1c07b1e1d4 /pkg/csource
parent0b45cac3dc627e9b6702daf3d578d970440972e9 (diff)
Revert "pkg/csource: list the newly added SYZ_KVM_ constants in TestExecutorMacros"
This reverts commit 1763a1862f3468b4b1a5cedef9d61ddd8d0e58e8.
Diffstat (limited to 'pkg/csource')
-rw-r--r--pkg/csource/csource_test.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/pkg/csource/csource_test.go b/pkg/csource/csource_test.go
index ec7a6bf78..c97757d01 100644
--- a/pkg/csource/csource_test.go
+++ b/pkg/csource/csource_test.go
@@ -164,9 +164,6 @@ func TestExecutorMacros(t *testing.T) {
expected["SYZ_HAVE_RESET_LOOP"] = true
expected["SYZ_HAVE_SETUP_TEST"] = true
expected["SYZ_TEST_COMMON_EXT_EXAMPLE"] = true
- expected["SYZ_KVM_MAX_VCPU"] = true
- expected["SYZ_KVM_PAGE_SIZE"] = true
- expected["SYZ_KVM_GUEST_MEM_SIZE"] = true
macros := regexp.MustCompile("SYZ_[A-Za-z0-9_]+").FindAllString(string(executor.CommonHeader), -1)
for _, macro := range macros {
if strings.HasPrefix(macro, "SYZ_HAVE_") {