Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(615)

Unified Diff: test/same-source-file-name/gyptest-static.py

Issue 670063006: Stop checking for duplicate basenames (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/same-source-file-name/gyptest-static.py
diff --git a/test/same-source-file-name/gyptest-static.py b/test/same-source-file-name/gyptest-static.py
index 7fa27720403b3c6e5b9d1e23fe040feef3dc8f33..2361ec64f93847a45ca36fc7d314068f9a59ad41 100755
--- a/test/same-source-file-name/gyptest-static.py
+++ b/test/same-source-file-name/gyptest-static.py
@@ -16,18 +16,13 @@ import TestGyp
test = TestGyp.TestGyp()
-# Fails by default for the compatibility with legacy generators such as
-# VCProj generator for Visual C++ 2008 and Makefile generator on Mac.
-# TODO: Update expected behavior when these legacy generators are deprecated.
-test.run_gyp('double-static.gyp', chdir='src', status=1, stderr=None)
-
if ((test.format == 'make' and sys.platform == 'darwin') or
(test.format == 'msvs' and
int(os.environ.get('GYP_MSVS_VERSION', 2010)) < 2010)):
- test.run_gyp('double-static.gyp', '--no-duplicate-basename-check',
+ test.run_gyp('double-static.gyp',
chdir='src', status=1, stderr=None)
else:
- test.run_gyp('double-static.gyp', '--no-duplicate-basename-check',
+ test.run_gyp('double-static.gyp',
chdir='src')
test.build('double-static.gyp', test.ALL, chdir='src')
« test/same-source-file-name/gyptest-shared.py ('K') | « test/same-source-file-name/gyptest-shared.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698