tests: add alu-test from movfuscator

* https://github.com/xoreaxeaxeax/movfuscator
This commit is contained in:
Zihao Yu 2023-07-01 00:51:15 +08:00
parent 245c069c4e
commit fbc2739875
2 changed files with 138 additions and 0 deletions

11
tests/alu-tests/Makefile Normal file
View file

@ -0,0 +1,11 @@
NAME = alutest
SRCS = build/alu_test.c
include $(AM_HOME)/Makefile
GENERATOR = build/gen_alu_test
$(GENERATOR): gen_alu_test.c
gcc -O2 $^ -o $@
$(SRCS): $(GENERATOR)
$^ > $@