OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 | 2 |
3 # Copyright (c) 2009 Google Inc. All rights reserved. | 3 # Copyright (c) 2009 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 simple actions when using the default build target. | 8 Verifies simple actions when using the default build target. |
9 """ | 9 """ |
10 | 10 |
11 import TestGyp | 11 import TestGyp |
12 | 12 |
13 test = TestGyp.TestGyp(workdir='workarea_default') | 13 test = TestGyp.TestGyp(workdir='workarea_default') |
14 | 14 |
15 test.run_gyp('actions.gyp', chdir='src') | 15 test.run_gyp('actions.gyp', chdir='src') |
16 | 16 |
17 test.relocate('src', 'relocate/src') | 17 test.relocate('src', 'relocate/src') |
18 | 18 |
19 # Test that an "always run" action increases a counter on multiple invocations, | 19 # Some gyp files use an action that mentions an output but never writes it |
20 # and that a dependent action updates in step. | 20 # as a means to making something run on every build. That makes some pretty |
21 test.build('actions.gyp', chdir='relocate/src') | 21 # far-reaching assumptions about how build systems work and doesn't work with |
22 test.must_match('relocate/src/subdir1/actions-out/action-counter.txt', '1') | 22 # ninja. TODO(evan): figure out how to work always-run actions in to ninja. |
23 test.must_match('relocate/src/subdir1/actions-out/action-counter_2.txt', '1') | 23 if test.format != 'ninja': |
24 test.build('actions.gyp', chdir='relocate/src') | 24 # Test that an "always run" action increases a counter on multiple invocations
, |
25 test.must_match('relocate/src/subdir1/actions-out/action-counter.txt', '2') | 25 # and that a dependent action updates in step. |
26 test.must_match('relocate/src/subdir1/actions-out/action-counter_2.txt', '2') | 26 test.build('actions.gyp', chdir='relocate/src') |
| 27 test.must_match('relocate/src/subdir1/actions-out/action-counter.txt', '1') |
| 28 test.must_match('relocate/src/subdir1/actions-out/action-counter_2.txt', '1') |
| 29 test.build('actions.gyp', chdir='relocate/src') |
| 30 test.must_match('relocate/src/subdir1/actions-out/action-counter.txt', '2') |
| 31 test.must_match('relocate/src/subdir1/actions-out/action-counter_2.txt', '2') |
27 | 32 |
28 # The "always run" action only counts to 2, but the dependent target will count | 33 # The "always run" action only counts to 2, but the dependent target will coun
t |
29 # forever if it's allowed to run. This verifies that the dependent target only | 34 # forever if it's allowed to run. This verifies that the dependent target only |
30 # runs when the "always run" action generates new output, not just because the | 35 # runs when the "always run" action generates new output, not just because the |
31 # "always run" ran. | 36 # "always run" ran. |
32 test.build('actions.gyp', test.ALL, chdir='relocate/src') | 37 test.build('actions.gyp', test.ALL, chdir='relocate/src') |
33 test.must_match('relocate/src/subdir1/actions-out/action-counter.txt', '2') | 38 test.must_match('relocate/src/subdir1/actions-out/action-counter.txt', '2') |
34 test.must_match('relocate/src/subdir1/actions-out/action-counter_2.txt', '2') | 39 test.must_match('relocate/src/subdir1/actions-out/action-counter_2.txt', '2') |
35 | 40 |
36 expect = """\ | 41 expect = """\ |
37 Hello from program.c | 42 Hello from program.c |
38 Hello from make-prog1.py | 43 Hello from make-prog1.py |
39 Hello from make-prog2.py | 44 Hello from make-prog2.py |
40 """ | 45 """ |
41 | 46 |
42 if test.format == 'xcode': | 47 if test.format == 'xcode': |
43 chdir = 'relocate/src/subdir1' | 48 chdir = 'relocate/src/subdir1' |
44 else: | 49 else: |
45 chdir = 'relocate/src' | 50 chdir = 'relocate/src' |
46 test.run_built_executable('program', chdir=chdir, stdout=expect) | 51 test.run_built_executable('program', chdir=chdir, stdout=expect) |
47 | 52 |
48 | 53 |
49 test.must_match('relocate/src/subdir2/file.out', "Hello from make-file.py\n") | 54 test.must_match('relocate/src/subdir2/file.out', "Hello from make-file.py\n") |
50 | 55 |
51 | 56 |
52 expect = "Hello from generate_main.py\n" | 57 expect = "Hello from generate_main.py\n" |
53 | 58 |
54 if test.format == 'xcode': | 59 if test.format == 'xcode': |
55 chdir = 'relocate/src/subdir3' | 60 chdir = 'relocate/src/subdir3' |
56 else: | 61 else: |
57 chdir = 'relocate/src' | 62 chdir = 'relocate/src' |
58 test.run_built_executable('null_input', chdir=chdir, stdout=expect) | 63 test.run_built_executable('null_input', chdir=chdir, stdout=expect) |
59 | 64 |
60 | 65 |
61 test.pass_test() | 66 test.pass_test() |
OLD | NEW |