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

Side by Side Diff: test/module/gyptest-default.py

Issue 256020: Make scons 'loadable_module' output consistent with make output location... (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: '' Created 11 years, 2 months 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
« no previous file with comments | « pylib/gyp/generator/scons.py ('k') | test/module/src/lib1.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env python
2
3 """
4 Verifies simple build of a "Hello, world!" program with loadable modules. The
5 default for all platforms should be to output the loadable modules to the same
6 path as the executable.
7 """
8
9 import TestGyp
10
11 test = TestGyp.TestGyp()
12
13 test.run_gyp('module.gyp', chdir='src')
14
15 test.build_all('module.gyp', chdir='src')
16
17 expect = """\
18 Hello from program.c
19 Hello from lib1.c
20 Hello from lib2.c
21 """
22 test.run_built_executable('program', chdir='src', stdout=expect)
23
24 test.pass_test()
OLDNEW
« no previous file with comments | « pylib/gyp/generator/scons.py ('k') | test/module/src/lib1.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698