summaryrefslogtreecommitdiff
path: root/test/rules-rebuild/gyptest-default.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/rules-rebuild/gyptest-default.py')
-rwxr-xr-xtest/rules-rebuild/gyptest-default.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/rules-rebuild/gyptest-default.py b/test/rules-rebuild/gyptest-default.py
index ac3f0209..2ac8f390 100755
--- a/test/rules-rebuild/gyptest-default.py
+++ b/test/rules-rebuild/gyptest-default.py
@@ -11,7 +11,15 @@ correctly when the inputs change.
import TestGyp
+import os
+import sys
+
test = TestGyp.TestGyp(workdir='workarea_default')
+if (test.format == 'msvs' and
+ int(os.environ.get('GYP_MSVS_VERSION', 0)) == 2013):
+ print 'This test is broken on VS2013. https://code.google.com/p/gyp/issues/detail?id=465'
+ sys.exit(0)
+
test.run_gyp('same_target.gyp', chdir='src')