| 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 setting SDKROOT works. | 8 Verifies that setting SDKROOT works. |
| 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 subprocess | 16 import subprocess |
| 15 import sys | 17 import sys |
| 16 | 18 |
| 17 | 19 |
| 18 if sys.platform == 'darwin': | 20 if sys.platform == 'darwin': |
| 19 print "This test is currently disabled: https://crbug.com/483696." | 21 print("This test is currently disabled: https://crbug.com/483696.") |
| 20 sys.exit(0) | 22 sys.exit(0) |
| 21 | 23 |
| 22 test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode']) | 24 test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode']) |
| 23 | 25 |
| 24 def GetSDKPath(sdk): | 26 def GetSDKPath(sdk): |
| 25 """Return SDKROOT if the SDK version |sdk| is installed or empty string.""" | 27 """Return SDKROOT if the SDK version |sdk| is installed or empty string.""" |
| 26 DEVNULL = open(os.devnull, 'wb') | 28 DEVNULL = open(os.devnull, 'wb') |
| 27 try: | 29 try: |
| 28 proc = subprocess.Popen( | 30 proc = subprocess.Popen( |
| 29 ['xcodebuild', '-version', '-sdk', 'macosx' + sdk, 'Path'], | 31 ['xcodebuild', '-version', '-sdk', 'macosx' + sdk, 'Path'], |
| (...skipping 15 matching lines...) Expand all Loading... |
| 45 sdk_found, sdk, sdk_path = SelectSDK() | 47 sdk_found, sdk, sdk_path = SelectSDK() |
| 46 if not sdk_found: | 48 if not sdk_found: |
| 47 test.fail_test() | 49 test.fail_test() |
| 48 | 50 |
| 49 test.write('sdkroot/test.gyp', test.read('sdkroot/test.gyp') % sdk) | 51 test.write('sdkroot/test.gyp', test.read('sdkroot/test.gyp') % sdk) |
| 50 | 52 |
| 51 test.run_gyp('test.gyp', '-D', 'sdk_path=%s' % sdk_path, | 53 test.run_gyp('test.gyp', '-D', 'sdk_path=%s' % sdk_path, |
| 52 chdir='sdkroot') | 54 chdir='sdkroot') |
| 53 test.build('test.gyp', test.ALL, chdir='sdkroot') | 55 test.build('test.gyp', test.ALL, chdir='sdkroot') |
| 54 test.pass_test() | 56 test.pass_test() |
| OLD | NEW |