> compile NEMU

ysyx_22040000 李心杨
Linux calcite 6.1.71 #1-NixOS SMP PREEMPT_DYNAMIC Fri Jan  5 14:18:41 UTC 2024 x86_64 GNU/Linux
 22:30:22  up 2 days 11:25,  2 users,  load average: 0.38, 0.45, 0.38
This commit is contained in:
tracer-ysyx 2024-01-15 22:30:22 +08:00 committed by xinyangli
parent b63d1203c9
commit 88a963e177
2 changed files with 114 additions and 2 deletions

File diff suppressed because one or more lines are too long

View file

@ -203,10 +203,9 @@ Suite *expr_suite(void) {
tcase_add_loop_test(tc_core, test_expr_random_100, 0, 20);
tcase_add_loop_test(tc_core, test_expr_negative_operand, 0,
sizeof(exprs) / sizeof(exprs[0]));
tcase_add_loop_test(tc_core, test_expr_plain_register, 0,
sizeof(reg_exprs) / sizeof(reg_exprs[0]));
tcase_add_loop_test(tc_core, test_expr_register, 0,
sizeof(reg_exprs) / sizeof(reg_exprs[0]));
tcase_add_test(tc_core, test_expr_plain_register);
suite_add_tcase(s, tc_core);
return s;