unit: make test_x86_soft_paging.c compilable. also update .gitignore for its binary

This commit is contained in:
Nguyen Anh Quynh 2016-02-22 14:01:00 +08:00
parent 2ab2b229ce
commit 2f28f3f210
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -138,6 +138,7 @@ test_tb_x86
test_multihook
test_pc_change
mem_fuzz
test_x86_soft_paging
#################

View File

@ -202,7 +202,7 @@ static void test_high_paging(void **state) {
int main(void) {
const struct CMUnitTests tests[] = {
const struct CMUnitTest tests[] = {
cmocka_unit_test(test_low_paging),
cmocka_unit_test(test_high_paging),
};