summaryrefslogtreecommitdiff
path: root/test/win/gyptest-link-target-machine.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/win/gyptest-link-target-machine.py')
-rw-r--r--test/win/gyptest-link-target-machine.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/win/gyptest-link-target-machine.py b/test/win/gyptest-link-target-machine.py
index 5a15f3f4..477937df 100644
--- a/test/win/gyptest-link-target-machine.py
+++ b/test/win/gyptest-link-target-machine.py
@@ -18,11 +18,12 @@ if sys.platform == 'win32':
CHDIR = 'linker-flags'
test.run_gyp('target-machine.gyp', chdir=CHDIR)
# The .cc file is compiled as x86 (the default), so the link/libs that are
- # x64 need to fail.
+ # x64 or ARM need to fail.
test.build('target-machine.gyp', 'test_target_link_x86', chdir=CHDIR)
test.build(
'target-machine.gyp', 'test_target_link_x64', chdir=CHDIR, status=1)
test.build('target-machine.gyp', 'test_target_lib_x86', chdir=CHDIR)
test.build('target-machine.gyp', 'test_target_lib_x64', chdir=CHDIR, status=1)
+ test.build('target-machine.gyp', 'test_target_lib_arm', chdir=CHDIR, status=1)
test.pass_test()