| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 | 2 |
| 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 |
| 5 # found in the LICENSE file. |
| 6 |
| 3 """ | 7 """ |
| 4 Verifies that Makefiles get rebuilt when a source gyp file changes. | 8 Verifies that Makefiles get rebuilt when a source gyp file changes. |
| 5 """ | 9 """ |
| 6 | 10 |
| 7 import TestGyp | 11 import TestGyp |
| 8 | 12 |
| 9 # Regenerating build files when a gyp file changes is currently only supported | 13 # Regenerating build files when a gyp file changes is currently only supported |
| 10 # by the make generator. | 14 # by the make generator. |
| 11 test = TestGyp.TestGyp(formats=['make']) | 15 test = TestGyp.TestGyp(formats=['make']) |
| 12 | 16 |
| 13 test.run_gyp('hello.gyp') | 17 test.run_gyp('hello.gyp') |
| 14 | 18 |
| 15 test.build('hello.gyp', test.ALL) | 19 test.build('hello.gyp', test.ALL) |
| 16 | 20 |
| 17 test.run_built_executable('hello', stdout="Hello, world!\n") | 21 test.run_built_executable('hello', stdout="Hello, world!\n") |
| 18 | 22 |
| 19 # Sleep so that the changed gyp file will have a newer timestamp than the | 23 # Sleep so that the changed gyp file will have a newer timestamp than the |
| 20 # previously generated build files. | 24 # previously generated build files. |
| 21 test.sleep() | 25 test.sleep() |
| 22 test.write('hello.gyp', test.read('hello2.gyp')) | 26 test.write('hello.gyp', test.read('hello2.gyp')) |
| 23 | 27 |
| 24 test.build('hello.gyp', test.ALL) | 28 test.build('hello.gyp', test.ALL) |
| 25 | 29 |
| 26 test.run_built_executable('hello', stdout="Hello, two!\n") | 30 test.run_built_executable('hello', stdout="Hello, two!\n") |
| 27 | 31 |
| 28 test.pass_test() | 32 test.pass_test() |
| OLD | NEW |