mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 05:05:36 +00:00
fixed typo: test_x86_shl_pf -> test_x86_shl
This commit is contained in:
parent
8120b7732e
commit
1ecc5abdbc
|
@ -13,7 +13,7 @@ endif
|
||||||
|
|
||||||
ALL_TESTS = test_sanity test_x86 test_mem_map test_mem_high test_mem_map_ptr \
|
ALL_TESTS = test_sanity test_x86 test_mem_map test_mem_high test_mem_map_ptr \
|
||||||
test_tb_x86 test_multihook test_pc_change test_x86_soft_paging \
|
test_tb_x86 test_multihook test_pc_change test_x86_soft_paging \
|
||||||
test_hookcounts test_hang test_x86_shl_pf
|
test_hookcounts test_hang test_x86_shl
|
||||||
|
|
||||||
.PHONY: all
|
.PHONY: all
|
||||||
all: ${ALL_TESTS}
|
all: ${ALL_TESTS}
|
||||||
|
@ -36,7 +36,7 @@ test: ${ALL_TESTS}
|
||||||
./test_x86_soft_paging
|
./test_x86_soft_paging
|
||||||
./test_hookcounts
|
./test_hookcounts
|
||||||
./test_hang
|
./test_hang
|
||||||
./test_x86_shl_pf
|
./test_x86_shl
|
||||||
|
|
||||||
test_sanity: test_sanity.c
|
test_sanity: test_sanity.c
|
||||||
test_x86: test_x86.c
|
test_x86: test_x86.c
|
||||||
|
@ -49,7 +49,7 @@ test_pc_change: test_pc_change.c
|
||||||
test_x86_soft_paging: test_x86_soft_paging.c
|
test_x86_soft_paging: test_x86_soft_paging.c
|
||||||
test_hookcounts: test_hookcounts.c
|
test_hookcounts: test_hookcounts.c
|
||||||
test_hang: test_hang.c
|
test_hang: test_hang.c
|
||||||
test_x86_shl_pf: test_x86_shl_pf.c
|
test_x86_shl: test_x86_shl.c
|
||||||
|
|
||||||
${ALL_TESTS}:
|
${ALL_TESTS}:
|
||||||
${CC} ${CFLAGS} -o $@ $^
|
${CC} ${CFLAGS} -o $@ $^
|
||||||
|
|
Loading…
Reference in a new issue