Skip to content

Commit

Permalink
Merge pull request #180 from Tachi107/fix-32bit-tests
Browse files Browse the repository at this point in the history
test: only run apx test when BIT=64
  • Loading branch information
herumi authored Dec 13, 2023
2 parents 016ce86 + 650b241 commit 835f6d2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
TARGET = make_nm normalize_prefix bad_address misc cvt_test cvt_test32 noexception misc32 detect_x32 apx
TARGET = make_nm normalize_prefix bad_address misc cvt_test cvt_test32 noexception misc32 detect_x32
XBYAK_INC=../xbyak/xbyak.h ../xbyak/xbyak_mnemonic.h
UNAME_S=$(shell uname -s)
ifeq ($(shell ./detect_x32),x32)
Expand All @@ -21,7 +21,7 @@ ifeq ($(ONLY_64BIT),0)
endif

ifeq ($(BIT),64)
TARGET += jmp64 address64
TARGET += jmp64 address64 apx
endif

all: $(TARGET)
Expand Down Expand Up @@ -73,14 +73,14 @@ endif
./misc
./misc32
./cvt_test
./apx
ifeq ($(BIT),64)
CXX=$(CXX) ./test_address.sh 64
ifneq ($(X32),1)
CXX=$(CXX) ./test_nm.sh 64
CXX=$(CXX) ./test_nm.sh Y64
endif
./jmp64
./apx
endif

test_avx: normalize_prefix
Expand Down

0 comments on commit 835f6d2

Please sign in to comment.