Chromium Code Reviews
|
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #!/usr/bin/env python | |
| 2 | |
| 3 """ | |
| 4 Verifies simplest-possible build of a "Hello, world!" program | |
| 5 using the default build target. | |
| 6 """ | |
| 7 | |
| 8 import TestGyp | |
| 9 | |
| 10 test = TestGyp.TestGyp() | |
| 11 | |
| 12 test.run_gyp('hello.gyp') | |
| 13 | |
| 14 test.build_default('hello.gyp') | |
| 15 | |
| 16 test.run_built_executable('hello', stdout="Hello, world!\n") | |
| 17 | |
| 18 test.pass_test() | |
| OLD | NEW |