| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 | 2 |
| 3 # Copyright (c) 2011 Google Inc. All rights reserved. | 3 # Copyright (c) 2011 Google Inc. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 """ | 7 """ |
| 8 Verifies that postbuild steps work. | 8 Verifies that postbuild steps work. |
| 9 """ | 9 """ |
| 10 | 10 |
| 11 import TestGyp | 11 import TestGyp |
| 12 | 12 |
| 13 import sys | 13 import sys |
| 14 | 14 |
| 15 if sys.platform == 'darwin': | 15 if sys.platform == 'darwin': |
| 16 test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode']) | 16 test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode']) |
| 17 | 17 |
| 18 test.run_gyp('test.gyp', chdir='postbuilds') | 18 test.run_gyp('test.gyp', |
| 19 '-G', 'xcode_ninja_target_pattern=^.*$', |
| 20 chdir='postbuilds') |
| 19 | 21 |
| 20 test.build('test.gyp', test.ALL, chdir='postbuilds') | 22 test.build('test.gyp', test.ALL, chdir='postbuilds') |
| 21 | 23 |
| 22 # See comment in test/subdirectory/gyptest-subdir-default.py | 24 # See comment in test/subdirectory/gyptest-subdir-default.py |
| 23 if test.format == 'xcode': | 25 if test.format == 'xcode': |
| 24 chdir = 'postbuilds/subdirectory' | 26 chdir = 'postbuilds/subdirectory' |
| 25 else: | 27 else: |
| 26 chdir = 'postbuilds' | 28 chdir = 'postbuilds' |
| 27 | 29 |
| 28 # Created by the postbuild scripts | 30 # Created by the postbuild scripts |
| (...skipping 15 matching lines...) Expand all Loading... |
| 44 test.built_file_must_exist( | 46 test.built_file_must_exist( |
| 45 'nest_dyna.framework/Versions/A/nest_dyna_touch', | 47 'nest_dyna.framework/Versions/A/nest_dyna_touch', |
| 46 chdir=chdir) | 48 chdir=chdir) |
| 47 test.built_file_must_exist('dyna_standalone.dylib_gyp_touch', | 49 test.built_file_must_exist('dyna_standalone.dylib_gyp_touch', |
| 48 type=test.SHARED_LIB, | 50 type=test.SHARED_LIB, |
| 49 chdir='postbuilds') | 51 chdir='postbuilds') |
| 50 test.built_file_must_exist('copied_file.txt', chdir='postbuilds') | 52 test.built_file_must_exist('copied_file.txt', chdir='postbuilds') |
| 51 test.built_file_must_exist('copied_file_2.txt', chdir=chdir) | 53 test.built_file_must_exist('copied_file_2.txt', chdir=chdir) |
| 52 | 54 |
| 53 test.pass_test() | 55 test.pass_test() |
| OLD | NEW |