Skip to content

Commit

Permalink
add missing qemu prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmuth committed Nov 27, 2023
1 parent 30ac938 commit 6a0475d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Elf/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ $(DIR)/gen_a32_test_c: $(GEN_ELF_TEST)
$(GEN_ELF_TEST) gena32 $@.exe > $@.log.out 2>&1
cmp -l $@.py.exe $@.exe
chmod a+rx $@.exe
./$@.exe > $@.out
$(QEMU_A32) ./$@.exe > $@.out
diff $@.out TestData/gen.a32.golden

$(DIR)/gen_x64_test_c: $(GEN_ELF_TEST)
Expand All @@ -99,7 +99,7 @@ $(DIR)/gen_x64_test_c: $(GEN_ELF_TEST)
$(GEN_ELF_TEST) genx64 $@.exe > $@.log.out 2>&1
cmp -l $@.py.exe $@.exe
chmod a+rx $@.exe
./$@.exe > $@.out
$(QEMU_X64) ./$@.exe > $@.out
diff $@.out TestData/gen.x64.golden

$(DIR)/gen_a64_test_c: $(GEN_ELF_TEST)
Expand All @@ -108,7 +108,7 @@ $(DIR)/gen_a64_test_c: $(GEN_ELF_TEST)
$(GEN_ELF_TEST) gena64 $@.exe > $@.log.out 2>&1
cmp -l $@.py.exe $@.exe
chmod a+rx $@.exe
./$@.exe > $@.out
$(QEMU_A64) ./$@.exe > $@.out
diff $@.out TestData/gen.a64.golden

############################################################
Expand Down

0 comments on commit 6a0475d

Please sign in to comment.