> 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
 00:12:50  up 2 days 13:07,  2 users,  load average: 0.38, 0.44, 0.46
This commit is contained in:
tracer-ysyx 2024-01-16 00:12:50 +08:00 committed by xinyangli
parent be9c694cab
commit cada53f571

View file

@ -175,12 +175,12 @@ START_TEST(test_expr_plain_register) {
for (i = 1; i < 32; i++) { for (i = 1; i < 32; i++) {
ck_assert(strncpy(buf + 1, regs[i], 10)); ck_assert(strncpy(buf + 1, regs[i], 10));
// gpr(i) = i; // gpr(i) = i;
yy_scan_string(buf); // yy_scan_string(buf);
result = yyparse(&value); // result = yyparse(&value);
yylex_destroy(); // yylex_destroy();
ck_assert_msg(result == 0, "expr = %s\n", buf); // ck_assert_msg(result == 0, "expr = %s\n", buf);
ck_assert(value == 0); // ck_assert(value == i);
for (j = 1; j < 10; j++) { for (j = 1; j < 10; j++) {
buf[i] = '\0'; buf[i] = '\0';
} }