File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -68,14 +68,19 @@ static void test_spx(void)
68
68
set_prefix (old_prefix );
69
69
report (pagebuf [GEN_LC_STFL ] != 0 , "stfl to new prefix" );
70
70
71
+ report_prefix_push ("operand not word aligned" );
71
72
expect_pgm_int ();
72
73
asm volatile (" spx 0(%0) " : : "r" (1 ));
73
74
check_pgm_int_code (PGM_INT_CODE_SPECIFICATION );
75
+ report_prefix_pop ();
74
76
77
+ report_prefix_push ("operand outside memory" );
75
78
expect_pgm_int ();
76
79
asm volatile (" spx 0(%0) " : : "r" (-8L ));
77
80
check_pgm_int_code (PGM_INT_CODE_ADDRESSING );
81
+ report_prefix_pop ();
78
82
83
+ report_prefix_push ("new prefix outside memory" );
79
84
new_prefix = get_ram_size () & 0x7fffe000 ;
80
85
/* TODO: Remove host_is_tcg() checks once CIs are using QEMU >= 7.1 */
81
86
if (!host_is_tcg () && (get_ram_size () - new_prefix < 2 * PAGE_SIZE )) {
@@ -95,6 +100,7 @@ static void test_spx(void)
95
100
else
96
101
report_skip ("inaccessible prefix area" );
97
102
}
103
+ report_prefix_pop ();
98
104
}
99
105
100
106
/* Test the STORE CPU ADDRESS instruction */
You can’t perform that action at this time.
0 commit comments