Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/uefi/Bsa.inf
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@
../../test_pool/peripherals/d001.c
../../test_pool/peripherals/d002.c
../../test_pool/peripherals/d003.c
../../test_pool/memory_map/m001.c
../../test_pool/memory_map/m002.c
../../test_pool/memory_map/m003.c
../../test_pool/power_wakeup/u001.c
Expand Down
1 change: 1 addition & 0 deletions apps/uefi/Sbsa.inf
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
../../test_pool/peripherals/d001.c
../../test_pool/peripherals/d002.c
../../test_pool/peripherals/d003.c
../../test_pool/memory_map/m001.c
../../test_pool/memory_map/m002.c
../../test_pool/memory_map/m003.c
../../test_pool/power_wakeup/u001.c
Expand Down
1 change: 1 addition & 0 deletions apps/uefi/SbsaNist.inf
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@
../../test_pool/smmu/i022.c
../../test_pool/smmu/i024.c
../../test_pool/smmu/i025.c
../../test_pool/memory_map/m001.c
../../test_pool/memory_map/m005.c
../../test_pool/pcie/p001.c
../../test_pool/pcie/p002.c
Expand Down
1 change: 1 addition & 0 deletions apps/uefi/Vbsa.inf
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@
../../test_pool/peripherals/d001.c
../../test_pool/peripherals/d002.c
../../test_pool/peripherals/d003.c
../../test_pool/memory_map/m001.c
../../test_pool/memory_map/m002.c
../../test_pool/memory_map/m003.c
../../test_pool/power_wakeup/u001.c
Expand Down
1 change: 1 addition & 0 deletions apps/uefi/pc_bsa.inf
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
../../test_pool/peripherals/d001.c
../../test_pool/peripherals/d002.c
../../test_pool/peripherals/d003.c
../../test_pool/memory_map/m001.c
../../test_pool/memory_map/m002.c
../../test_pool/memory_map/m003.c
../../test_pool/power_wakeup/u001.c
Expand Down
1 change: 1 addition & 0 deletions apps/uefi/xbsa_acpi.inf
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@
../../test_pool/peripherals/d001.c
../../test_pool/peripherals/d002.c
../../test_pool/peripherals/d003.c
../../test_pool/memory_map/m001.c
../../test_pool/memory_map/m002.c
../../test_pool/memory_map/m003.c
../../test_pool/power_wakeup/u001.c
Expand Down
3 changes: 2 additions & 1 deletion val/src/rule_metadata.c
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,7 @@ rule_test_map_t rule_test_map[RULE_ID_SENTINEL] = {
.test_entry_id = M001_ENTRY,
.module_id = MEM_MAP,
.rule_desc = "Memory Access to Un-Populated addr",
.platform_bitmask = PLATFORM_BAREMETAL,
.platform_bitmask = PLATFORM_BAREMETAL | PLATFORM_UEFI,
.flag = BASE_RULE,
.test_num = ACS_MEMORY_MAP_TEST_NUM_BASE + 1,
},
Expand Down Expand Up @@ -3598,6 +3598,7 @@ test_entry_fn_t test_entry_func_table[TEST_ENTRY_SENTINEL] = {
[ITS003_ENTRY] = its003_entry,
[ITS004_ENTRY] = its004_entry,
[ITS005_ENTRY] = its005_entry,
[M001_ENTRY] = m001_entry,
[M002_ENTRY] = m002_entry,
[M003_ENTRY] = m003_entry,
[M005_ENTRY] = m005_entry,
Expand Down
Loading