fix make test invocation for msvc win64

Change-Id: If5d4b7ffa67223ed72b53a6c9b9e42b4de5718f2
This commit is contained in:
James Zern 2013-04-05 11:56:54 -07:00
parent c4195e0eb8
commit 8b4b28a5ea
2 changed files with 3 additions and 1 deletions

View File

@ -1087,10 +1087,12 @@ EOF
win32)
add_asflags -f win32
enabled debug && add_asflags -g cv8
EXE_SFX=.exe
;;
win64)
add_asflags -f x64
enabled debug && add_asflags -g cv8
EXE_SFX=.exe
;;
linux*|solaris*|android*)
add_asflags -f elf${bits}

View File

@ -436,7 +436,7 @@ test_libvpx.vcproj: $(LIBVPX_TEST_SRCS)
PROJECTS-$(CONFIG_MSVS) += test_libvpx.vcproj
test:: testdata
@set -e; for t in $(addprefix Win32/Release/,$(notdir $(LIBVPX_TEST_BINS:.cc=.exe))); do $$t; done
@set -e; for t in $(addprefix $(TGT_OS:win64=x64)/Release/,$(notdir $(LIBVPX_TEST_BINS:.cc=.exe))); do $$t; done
endif
else