| 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 Tests that filenames that contain colons are handled correctly. | 8 Tests that filenames that contain colons are handled correctly. |
| 9 (This is important for absolute paths on Windows.) | 9 (This is important for absolute paths on Windows.) |
| 10 """ | 10 """ |
| 11 | 11 |
| 12 from __future__ import print_function |
| 13 |
| 12 import os | 14 import os |
| 13 import sys | 15 import sys |
| 14 | 16 |
| 15 if sys.platform == 'win32': | 17 if sys.platform == 'win32': |
| 16 print "This test is currently disabled: https://crbug.com/483696." | 18 print("This test is currently disabled: https://crbug.com/483696.") |
| 17 sys.exit(0) | 19 sys.exit(0) |
| 18 | 20 |
| 19 | 21 |
| 20 import TestGyp | 22 import TestGyp |
| 21 | 23 |
| 22 # TODO: Make colons in filenames work with make, if required. | 24 # TODO: Make colons in filenames work with make, if required. |
| 23 test = TestGyp.TestGyp(formats=['!make']) | 25 test = TestGyp.TestGyp(formats=['!make']) |
| 24 CHDIR = 'colon' | 26 CHDIR = 'colon' |
| 25 | 27 |
| 26 source_name = 'colon/a:b.c' | 28 source_name = 'colon/a:b.c' |
| (...skipping 13 matching lines...) Expand all Loading... |
| 40 | 42 |
| 41 # Create the file dynamically, Windows is unhappy if a file with a colon in | 43 # Create the file dynamically, Windows is unhappy if a file with a colon in |
| 42 # its name is checked in. | 44 # its name is checked in. |
| 43 test.write(source_name, 'int main() {}') | 45 test.write(source_name, 'int main() {}') |
| 44 test.write(copies_name, 'foo') | 46 test.write(copies_name, 'foo') |
| 45 | 47 |
| 46 test.run_gyp('test.gyp', chdir=CHDIR) | 48 test.run_gyp('test.gyp', chdir=CHDIR) |
| 47 test.build('test.gyp', test.ALL, chdir=CHDIR) | 49 test.build('test.gyp', test.ALL, chdir=CHDIR) |
| 48 test.built_file_must_exist(os.path.basename(copies_name), chdir=CHDIR) | 50 test.built_file_must_exist(os.path.basename(copies_name), chdir=CHDIR) |
| 49 test.pass_test() | 51 test.pass_test() |
| OLD | NEW |