| Index: trunk/test/hello/gyptest-default.py
|
| ===================================================================
|
| --- trunk/test/hello/gyptest-default.py (revision 0)
|
| +++ trunk/test/hello/gyptest-default.py (revision 0)
|
| @@ -0,0 +1,18 @@
|
| +#!/usr/bin/env python
|
| +
|
| +"""
|
| +Verifies simplest-possible build of a "Hello, world!" program
|
| +using the default build target.
|
| +"""
|
| +
|
| +import TestGyp
|
| +
|
| +test = TestGyp.TestGyp()
|
| +
|
| +test.run_gyp('hello.gyp')
|
| +
|
| +test.build_default('hello.gyp')
|
| +
|
| +test.run_built_executable('hello', stdout="Hello, world!\n")
|
| +
|
| +test.pass_test()
|
|
|
| Property changes on: trunk/test/hello/gyptest-default.py
|
| ___________________________________________________________________
|
| Name: svn:eol-style
|
| + LF
|
|
|
|
|