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

Side by Side Diff: trunk/test/library/gyptest-shared.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, 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
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 shared libraries, 8 Verifies simple build of a "Hello, world!" program with shared libraries,
5 including verifying that libraries are rebuilt correctly when functions 9 including verifying that libraries are rebuilt correctly when functions
6 move between libraries. 10 move between libraries.
7 """ 11 """
8 12
9 import TestGyp 13 import TestGyp
10 14
11 test = TestGyp.TestGyp() 15 test = TestGyp.TestGyp()
12 16
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 expect = """\ 75 expect = """\
72 Hello again again from program.c 76 Hello again again from program.c
73 Hello from lib1.c 77 Hello from lib1.c
74 Hello from lib2.c 78 Hello from lib2.c
75 Hello from lib1_moveable.c 79 Hello from lib1_moveable.c
76 """ 80 """
77 test.run_built_executable('program', chdir='relocate/src', stdout=expect) 81 test.run_built_executable('program', chdir='relocate/src', stdout=expect)
78 82
79 83
80 test.pass_test() 84 test.pass_test()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698