| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 | 2 |
| 3 # Copyright (c) 2013 Google Inc. All rights reserved. | 3 # Copyright (c) 2013 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 *_wrapper in make_global_settings. | 8 Verifies *_wrapper in make_global_settings. |
| 9 """ | 9 """ |
| 10 | 10 |
| 11 import os | 11 import os |
| 12 import sys | 12 import sys |
| 13 import TestGyp | 13 import TestGyp |
| 14 | 14 |
| 15 test_format = ['ninja'] | 15 test_format = ['ninja'] |
| 16 if sys.platform in ('linux2', 'darwin'): | 16 if sys.platform.startswith('linux') or sys.platform == 'darwin': |
| 17 test_format += ['make'] | 17 test_format += ['make'] |
| 18 | 18 |
| 19 test = TestGyp.TestGyp(formats=test_format) | 19 test = TestGyp.TestGyp(formats=test_format) |
| 20 | 20 |
| 21 old_env = dict(os.environ) | 21 old_env = dict(os.environ) |
| 22 os.environ['GYP_CROSSCOMPILE'] = '1' | 22 os.environ['GYP_CROSSCOMPILE'] = '1' |
| 23 test.run_gyp('wrapper.gyp') | 23 test.run_gyp('wrapper.gyp') |
| 24 os.environ.clear() | 24 os.environ.clear() |
| 25 os.environ.update(old_env) | 25 os.environ.update(old_env) |
| 26 | 26 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 38 cc_host_expected = ('cc_host = ' + os.path.join('..', '..', 'ccache') + ' ' + | 38 cc_host_expected = ('cc_host = ' + os.path.join('..', '..', 'ccache') + ' ' + |
| 39 os.path.join('..', '..', 'clang')) | 39 os.path.join('..', '..', 'clang')) |
| 40 ld_expected = 'ld = ../../distlink $cc' | 40 ld_expected = 'ld = ../../distlink $cc' |
| 41 if sys.platform == 'win32': | 41 if sys.platform == 'win32': |
| 42 ld_expected = 'link.exe' | 42 ld_expected = 'link.exe' |
| 43 test.must_contain('out/Default/build.ninja', cc_expected) | 43 test.must_contain('out/Default/build.ninja', cc_expected) |
| 44 test.must_contain('out/Default/build.ninja', cc_host_expected) | 44 test.must_contain('out/Default/build.ninja', cc_host_expected) |
| 45 test.must_contain('out/Default/build.ninja', ld_expected) | 45 test.must_contain('out/Default/build.ninja', ld_expected) |
| 46 | 46 |
| 47 test.pass_test() | 47 test.pass_test() |
| OLD | NEW |