aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/Makefile
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2024-10-10 11:14:21 +0900
committerMITSUNARI Shigeo <[email protected]>2024-10-10 11:14:21 +0900
commit2fbc1dd9ee0be7683102c838a6dabd2395c0b7e7 (patch)
tree09e1162346bded0237db3a27aa3c052f9a64abb8 /test/Makefile
parent347307ff39f992c26733be1d7c778932db42625b (diff)
downloadxbyak-2fbc1dd9ee0be7683102c838a6dabd2395c0b7e7.tar.gz
xbyak-2fbc1dd9ee0be7683102c838a6dabd2395c0b7e7.zip
add test by xed
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile
index 862c110..04b6cb7 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -60,6 +60,10 @@ apx: apx.cpp $(XBYAK_INC)
avx10_test: avx10_test.cpp $(XBYAK_INC)
$(CXX) $(CFLAGS) avx10_test.cpp -o $@ -DXBYAK64
+TARGET=avx10.txt
+xed_test:
+ @for target in $(addprefix target/, $(TARGET)); do ./test_by_xed.sh $$target; done
+
test_nm: normalize_prefix $(TARGET)
$(MAKE) -C ../gen
ifneq ($(ONLY_64BIT),1)
@@ -118,7 +122,7 @@ test: detect_x32
$(MAKE) test_avx512
clean:
- $(RM) a.asm *.lst *.obj *.o $(TARGET) lib_run nm.cpp nm_frame make_512 avx10_test
+ $(RM) a.asm *.lst *.obj *.o $(TARGET) lib_run nm.cpp nm_frame make_512 avx10_test detect_x32
lib_run: lib_test.cpp lib_run.cpp lib.h
$(CXX) $(CFLAGS) lib_run.cpp lib_test.cpp -o lib_run