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

Side by Side Diff: test/generator-output/gyptest-actions.py

Issue 11659002: Teach ninja to handle output directories outside the source dir. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: Created 8 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 2
3 # Copyright (c) 2012 Google Inc. All rights reserved. 3 # Copyright (c) 2012 Google Inc. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 """ 7 """
8 Verifies --generator-output= behavior when using actions. 8 Verifies --generator-output= behavior when using actions.
9 """ 9 """
10 10
11 import TestGyp 11 import TestGyp
12 12
13 # Ninja and Android don't support --generator-output. 13 # Android doesn't support --generator-output.
14 test = TestGyp.TestGyp(formats=['!ninja', '!android']) 14 test = TestGyp.TestGyp(formats=['!android'])
15 15
16 # All the generated files should go under 'gypfiles'. The source directory 16 # All the generated files should go under 'gypfiles'. The source directory
17 # ('actions') should be untouched. 17 # ('actions') should be untouched.
18 test.writable(test.workpath('actions'), False) 18 test.writable(test.workpath('actions'), False)
19 test.run_gyp('actions.gyp', 19 test.run_gyp('actions.gyp',
20 '--generator-output=' + test.workpath('gypfiles'), 20 '--generator-output=' + test.workpath('gypfiles'),
21 chdir='actions') 21 chdir='actions')
22 22
23 test.writable(test.workpath('actions'), True) 23 test.writable(test.workpath('actions'), True)
24 24
(...skipping 24 matching lines...) Expand all
49 if test.format == 'xcode': 49 if test.format == 'xcode':
50 chdir = 'relocate/actions/subdir1' 50 chdir = 'relocate/actions/subdir1'
51 else: 51 else:
52 chdir = 'relocate/gypfiles' 52 chdir = 'relocate/gypfiles'
53 test.run_built_executable('program', chdir=chdir, stdout=expect) 53 test.run_built_executable('program', chdir=chdir, stdout=expect)
54 54
55 test.must_match('relocate/actions/subdir2/actions-out/file.out', 55 test.must_match('relocate/actions/subdir2/actions-out/file.out',
56 "Hello from make-file.py\n") 56 "Hello from make-file.py\n")
57 57
58 test.pass_test() 58 test.pass_test()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698