mirror of
https://github.com/herumi/xbyak
synced 2024-11-20 16:06:14 -07:00
make fails if test_by_xed.sh fails
This commit is contained in:
parent
64140448b4
commit
8b0a1acf0e
1 changed files with 4 additions and 1 deletions
|
@ -62,7 +62,10 @@ avx10_test: avx10_test.cpp $(XBYAK_INC)
|
||||||
|
|
||||||
TEST_FILES=old.txt new-ymm.txt bf16.txt comp.txt convert.txt minmax.txt saturation.txt
|
TEST_FILES=old.txt new-ymm.txt bf16.txt comp.txt convert.txt minmax.txt saturation.txt
|
||||||
xed_test:
|
xed_test:
|
||||||
@for target in $(addprefix avx10/, $(TEST_FILES)); do ./test_by_xed.sh $$target; done
|
@set -e; \
|
||||||
|
for target in $(addprefix avx10/, $(TEST_FILES)); do \
|
||||||
|
./test_by_xed.sh $$target || exit 1; \
|
||||||
|
done
|
||||||
|
|
||||||
test_nm: normalize_prefix $(TARGET)
|
test_nm: normalize_prefix $(TARGET)
|
||||||
$(MAKE) -C ../gen
|
$(MAKE) -C ../gen
|
||||||
|
|
Loading…
Reference in a new issue