Skip to content

Commit f5f5dae

Browse files
author
Claudio Imbrenda
committed
s390x: intercept: make sure all output lines are unique
The intercept test has the same output line twice for two different testcases. Fix this by adding report_prefix_push() as appropriate. Signed-off-by: Claudio Imbrenda <[email protected]> Reviewed-by: Thomas Huth <[email protected]> Link: https://lore.kernel.org/r/[email protected] Message-Id: <[email protected]>
1 parent 4742ad4 commit f5f5dae

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

s390x/intercept.c

+6
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,19 @@ static void test_spx(void)
6868
set_prefix(old_prefix);
6969
report(pagebuf[GEN_LC_STFL] != 0, "stfl to new prefix");
7070

71+
report_prefix_push("operand not word aligned");
7172
expect_pgm_int();
7273
asm volatile(" spx 0(%0) " : : "r"(1));
7374
check_pgm_int_code(PGM_INT_CODE_SPECIFICATION);
75+
report_prefix_pop();
7476

77+
report_prefix_push("operand outside memory");
7578
expect_pgm_int();
7679
asm volatile(" spx 0(%0) " : : "r"(-8L));
7780
check_pgm_int_code(PGM_INT_CODE_ADDRESSING);
81+
report_prefix_pop();
7882

83+
report_prefix_push("new prefix outside memory");
7984
new_prefix = get_ram_size() & 0x7fffe000;
8085
/* TODO: Remove host_is_tcg() checks once CIs are using QEMU >= 7.1 */
8186
if (!host_is_tcg() && (get_ram_size() - new_prefix < 2 * PAGE_SIZE)) {
@@ -95,6 +100,7 @@ static void test_spx(void)
95100
else
96101
report_skip("inaccessible prefix area");
97102
}
103+
report_prefix_pop();
98104
}
99105

100106
/* Test the STORE CPU ADDRESS instruction */

0 commit comments

Comments
 (0)