| Index: test/rules-rebuild/gyptest-default.py
|
| diff --git a/test/rules-rebuild/gyptest-default.py b/test/rules-rebuild/gyptest-default.py
|
| index ac3f0209aa042996a3a5a6df01b2059d2288ad44..2ac8f3900b2deac2638d356960366de3f2fa53b9 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')
|
|
|
|
|