From 8120b7732e9204b3ec8d39a76122e0254641b2b5 Mon Sep 17 00:00:00 2001 From: samothtronicien Date: Sat, 30 Jul 2016 16:42:51 +0200 Subject: [PATCH] added test_x86_shl_pf to makefile --- tests/unit/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/unit/Makefile b/tests/unit/Makefile index 55f38be5..9f2126e3 100644 --- a/tests/unit/Makefile +++ b/tests/unit/Makefile @@ -13,7 +13,7 @@ endif 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_hookcounts test_hang + test_hookcounts test_hang test_x86_shl_pf .PHONY: all all: ${ALL_TESTS} @@ -36,6 +36,7 @@ test: ${ALL_TESTS} ./test_x86_soft_paging ./test_hookcounts ./test_hang + ./test_x86_shl_pf test_sanity: test_sanity.c test_x86: test_x86.c @@ -48,6 +49,7 @@ test_pc_change: test_pc_change.c test_x86_soft_paging: test_x86_soft_paging.c test_hookcounts: test_hookcounts.c test_hang: test_hang.c +test_x86_shl_pf: test_x86_shl_pf.c ${ALL_TESTS}: ${CC} ${CFLAGS} -o $@ $^