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

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

Issue 306051: Add AUTHORS and LICENSE files, and copyright headers to relevant source files... (Closed) Base URL: http://gyp.googlecode.com/svn/
Patch Set: '' Created 11 years, 1 month 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
OLDNEW
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 simple build of a "Hello, world!" program with loadable modules. The 8 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 9 default for all platforms should be to output the loadable modules to the same
6 path as the executable. 10 path as the executable.
7 """ 11 """
8 12
9 import TestGyp 13 import TestGyp
10 14
11 test = TestGyp.TestGyp() 15 test = TestGyp.TestGyp()
12 16
13 test.run_gyp('module.gyp', chdir='src') 17 test.run_gyp('module.gyp', chdir='src')
14 18
15 test.build('module.gyp', test.ALL, chdir='src') 19 test.build('module.gyp', test.ALL, chdir='src')
16 20
17 expect = """\ 21 expect = """\
18 Hello from program.c 22 Hello from program.c
19 Hello from lib1.c 23 Hello from lib1.c
20 Hello from lib2.c 24 Hello from lib2.c
21 """ 25 """
22 test.run_built_executable('program', chdir='src', stdout=expect) 26 test.run_built_executable('program', chdir='src', stdout=expect)
23 27
24 test.pass_test() 28 test.pass_test()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698