| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 | 2 |
| 3 # Copyright (c) 2012 Google Inc. All rights reserved. | 3 # Copyright (c) 2012 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 'copies' with app bundles are handled correctly. | 8 Verifies that 'copies' with app bundles are handled correctly. |
| 9 """ | 9 """ |
| 10 | 10 |
| 11 from __future__ import print_function |
| 12 |
| 11 import TestGyp | 13 import TestGyp |
| 12 | 14 |
| 13 import os | 15 import os |
| 14 import sys | 16 import sys |
| 15 import time | 17 import time |
| 16 | 18 |
| 17 if sys.platform == 'darwin': | 19 if sys.platform == 'darwin': |
| 18 print "This test is currently disabled: https://crbug.com/483696." | 20 print("This test is currently disabled: https://crbug.com/483696.") |
| 19 sys.exit(0) | 21 sys.exit(0) |
| 20 | 22 |
| 21 test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode']) | 23 test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode']) |
| 22 | 24 |
| 23 test.run_gyp('framework.gyp', chdir='framework') | 25 test.run_gyp('framework.gyp', chdir='framework') |
| 24 | 26 |
| 25 test.build('framework.gyp', 'copy_target', chdir='framework') | 27 test.build('framework.gyp', 'copy_target', chdir='framework') |
| 26 | 28 |
| 27 # Check that the copy succeeded. | 29 # Check that the copy succeeded. |
| 28 test.built_file_must_exist( | 30 test.built_file_must_exist( |
| (...skipping 22 matching lines...) Expand all Loading... |
| 51 test.build('framework.gyp', 'copy_target', chdir='framework') | 53 test.build('framework.gyp', 'copy_target', chdir='framework') |
| 52 | 54 |
| 53 | 55 |
| 54 # Check that actions ran. | 56 # Check that actions ran. |
| 55 test.built_file_must_exist('action_file', chdir='framework') | 57 test.built_file_must_exist('action_file', chdir='framework') |
| 56 | 58 |
| 57 # Test that a copy with the "Code Sign on Copy" flag on succeeds. | 59 # Test that a copy with the "Code Sign on Copy" flag on succeeds. |
| 58 test.build('framework.gyp', 'copy_target_code_sign', chdir='framework') | 60 test.build('framework.gyp', 'copy_target_code_sign', chdir='framework') |
| 59 | 61 |
| 60 test.pass_test() | 62 test.pass_test() |
| OLD | NEW |