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

Unified Diff: test/ninja/normalize-paths-win/gyptest-normalize-paths.py

Issue 194883010: Fix missing variable MSVS expansion of copies arguments with Ninja. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: fix unittest Created 6 years, 9 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/ninja/normalize-paths-win/gyptest-normalize-paths.py
diff --git a/test/ninja/normalize-paths-win/gyptest-normalize-paths.py b/test/ninja/normalize-paths-win/gyptest-normalize-paths.py
index af48d071cf90594beea585c29e11c09a5b1b06ef..319ab8656d2a79a3951cda11c86d468de2e44e3f 100644
--- a/test/ninja/normalize-paths-win/gyptest-normalize-paths.py
+++ b/test/ninja/normalize-paths-win/gyptest-normalize-paths.py
@@ -31,6 +31,11 @@ if sys.platform == 'win32':
'AnotherName.exe' not in second):
test.fail_test()
+ copytarget = open(test.built_file_path('obj/copy_target.ninja')).read()
+ print copytarget
+ if '$(VSInstallDir)' in copytarget:
+ test.fail_test()
+
action = open(test.built_file_path('obj/action.ninja')).read()
if '..\\..\\out\\Default' in action:
test.fail_test()

Powered by Google App Engine
This is Rietveld 408576698