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

Side by Side Diff: trunk/test/hello/gyptest-regyp.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 that Makefiles get rebuilt when a source gyp file changes. 8 Verifies that Makefiles get rebuilt when a source gyp file changes.
5 """ 9 """
6 10
7 import TestGyp 11 import TestGyp
8 12
9 # Regenerating build files when a gyp file changes is currently only supported 13 # Regenerating build files when a gyp file changes is currently only supported
10 # by the make generator. 14 # by the make generator.
11 test = TestGyp.TestGyp(formats=['make']) 15 test = TestGyp.TestGyp(formats=['make'])
12 16
13 test.run_gyp('hello.gyp') 17 test.run_gyp('hello.gyp')
14 18
15 test.build('hello.gyp', test.ALL) 19 test.build('hello.gyp', test.ALL)
16 20
17 test.run_built_executable('hello', stdout="Hello, world!\n") 21 test.run_built_executable('hello', stdout="Hello, world!\n")
18 22
19 # Sleep so that the changed gyp file will have a newer timestamp than the 23 # Sleep so that the changed gyp file will have a newer timestamp than the
20 # previously generated build files. 24 # previously generated build files.
21 test.sleep() 25 test.sleep()
22 test.write('hello.gyp', test.read('hello2.gyp')) 26 test.write('hello.gyp', test.read('hello2.gyp'))
23 27
24 test.build('hello.gyp', test.ALL) 28 test.build('hello.gyp', test.ALL)
25 29
26 test.run_built_executable('hello', stdout="Hello, two!\n") 30 test.run_built_executable('hello', stdout="Hello, two!\n")
27 31
28 test.pass_test() 32 test.pass_test()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698