mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 12:48:16 +00:00
unit: make test_x86_soft_paging.c compilable. also update .gitignore for its binary
This commit is contained in:
parent
2ab2b229ce
commit
2f28f3f210
2 changed files with 2 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -138,6 +138,7 @@ test_tb_x86
|
||||||
test_multihook
|
test_multihook
|
||||||
test_pc_change
|
test_pc_change
|
||||||
mem_fuzz
|
mem_fuzz
|
||||||
|
test_x86_soft_paging
|
||||||
|
|
||||||
|
|
||||||
#################
|
#################
|
||||||
|
|
|
@ -202,7 +202,7 @@ static void test_high_paging(void **state) {
|
||||||
|
|
||||||
|
|
||||||
int main(void) {
|
int main(void) {
|
||||||
const struct CMUnitTests tests[] = {
|
const struct CMUnitTest tests[] = {
|
||||||
cmocka_unit_test(test_low_paging),
|
cmocka_unit_test(test_low_paging),
|
||||||
cmocka_unit_test(test_high_paging),
|
cmocka_unit_test(test_high_paging),
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue