diff options
author | Alice Frosi <afrosi@redhat.com> | 2023-02-21 13:12:14 +0100 |
---|---|---|
committer | Alice Frosi <afrosi@redhat.com> | 2023-02-21 13:28:09 +0100 |
commit | 1c7bb1c0589e729334f393757bf96543a05b219f (patch) | |
tree | 34e209250cc28cdd5feef8980cb225780ba537df | |
parent | 49e031fcb87ffed118725cb91d6251d166bf8f47 (diff) | |
download | seitan-1c7bb1c0589e729334f393757bf96543a05b219f.tar seitan-1c7bb1c0589e729334f393757bf96543a05b219f.tar.gz seitan-1c7bb1c0589e729334f393757bf96543a05b219f.tar.bz2 seitan-1c7bb1c0589e729334f393757bf96543a05b219f.tar.lz seitan-1c7bb1c0589e729334f393757bf96543a05b219f.tar.xz seitan-1c7bb1c0589e729334f393757bf96543a05b219f.tar.zst seitan-1c7bb1c0589e729334f393757bf96543a05b219f.zip |
tests: add test-action-call when running make test-unit
-rw-r--r-- | tests/unit/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/Makefile b/tests/unit/Makefile index a61f34c..87f64c4 100644 --- a/tests/unit/Makefile +++ b/tests/unit/Makefile @@ -1,11 +1,11 @@ CFLAGS += -lcheck -test: test-filter test-actions +test: test-filter test-actions test-action-call test-filter: test-filter.c $(CC) $(CFLAGS) -o test-filter ../../filter.c ../../disasm.c test-filter.c ./test-filter -test-action-call: test_action_call.c ../../actions.c ../../actions.h +test-action-call: test_action_call.c ../../actions.c ../../actions.h ../../gluten.h $(CC) $(CFLAGS) -o test-action-call ../../actions.c test_action_call.c ./test-action-call |