aboutgitcodelistschat:MatrixIRC
path: root/tests/unit/Makefile
diff options
context:
space:
mode:
authorAlice Frosi <afrosi@redhat.com>2023-02-22 15:52:54 +0100
committerAlice Frosi <afrosi@redhat.com>2023-02-22 16:15:03 +0100
commit977ffec509a95efeca2b7c508912d5d1df7cd677 (patch)
tree3d5c169951b05008415d5eafdf263c51e8cf164d /tests/unit/Makefile
parentba9623361f74be93674f2862903a39ae6d48e96e (diff)
downloadseitan-977ffec509a95efeca2b7c508912d5d1df7cd677.tar
seitan-977ffec509a95efeca2b7c508912d5d1df7cd677.tar.gz
seitan-977ffec509a95efeca2b7c508912d5d1df7cd677.tar.bz2
seitan-977ffec509a95efeca2b7c508912d5d1df7cd677.tar.lz
seitan-977ffec509a95efeca2b7c508912d5d1df7cd677.tar.xz
seitan-977ffec509a95efeca2b7c508912d5d1df7cd677.tar.zst
seitan-977ffec509a95efeca2b7c508912d5d1df7cd677.zip
Rename actions to operations
Replace all the action related names to operations to make them more generic.
Diffstat (limited to 'tests/unit/Makefile')
-rw-r--r--tests/unit/Makefile18
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/unit/Makefile b/tests/unit/Makefile
index 87f64c4..3ae4fd7 100644
--- a/tests/unit/Makefile
+++ b/tests/unit/Makefile
@@ -1,16 +1,16 @@
CFLAGS += -lcheck
-test: test-filter test-actions test-action-call
+test: test-filter test-operations test-op-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 ../../gluten.h
- $(CC) $(CFLAGS) -o test-action-call ../../actions.c test_action_call.c
- ./test-action-call
+test-op-call: test_op_call.c ../../operations.c ../../operations.h ../../gluten.h
+ $(CC) $(CFLAGS) -o test-op-call ../../operations.c test_op_call.c
+ ./test-op-call
-test-actions: test_actions.c ../../actions.c ../../actions.h ../../common.h
- $(CC) $(CFLAGS) -o test-actions \
- ../../common.c ../../actions.c \
- test_actions.c
- ./test-actions
+test-operations: test_operations.c ../../operations.c ../../operations.h ../../common.h
+ $(CC) $(CFLAGS) -o test-operations \
+ ../../common.c ../../operations.c \
+ test_operations.c
+ ./test-operations