Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Side by Side Diff: test/copies/gyptest-attribs.py

Issue 421453003: Add TestGypXcodeNinja to run tests against the xcode-ninja generator (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: Rebase onto origin/master Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 that copying files preserves file attributes. 8 Verifies that copying files preserves file attributes.
9 """ 9 """
10 10
11 import TestGyp 11 import TestGyp
12 12
13 import os 13 import os
14 import stat 14 import stat
15 import sys 15 import sys
16 16
17 17
18 def check_attribs(path, expected_exec_bit): 18 def check_attribs(path, expected_exec_bit):
19 out_path = test.built_file_path(path, chdir='src') 19 out_path = test.built_file_path(path, chdir='src')
20 20
21 in_stat = os.stat(os.path.join('src', path)) 21 in_stat = os.stat(os.path.join('src', path))
22 out_stat = os.stat(out_path) 22 out_stat = os.stat(out_path)
23 if out_stat.st_mode & stat.S_IXUSR != expected_exec_bit: 23 if out_stat.st_mode & stat.S_IXUSR != expected_exec_bit:
24 test.fail_test() 24 test.fail_test()
25 25
26 26
27 test = TestGyp.TestGyp() 27 test = TestGyp.TestGyp()
28 28
29 test.run_gyp('copies-attribs.gyp', chdir='src') 29 test.run_gyp('copies-attribs.gyp',
30 '-G', 'xcode_ninja_target_pattern=^copies1$',
31 chdir='src')
30 32
31 test.build('copies-attribs.gyp', chdir='src') 33 test.build('copies-attribs.gyp', chdir='src')
32 34
33 if sys.platform != 'win32': 35 if sys.platform != 'win32':
34 out_path = test.built_file_path('executable-file.sh', chdir='src') 36 out_path = test.built_file_path('executable-file.sh', chdir='src')
35 test.must_contain(out_path, 37 test.must_contain(out_path,
36 '#!/bin/bash\n' 38 '#!/bin/bash\n'
37 '\n' 39 '\n'
38 'echo echo echo echo cho ho o o\n') 40 'echo echo echo echo cho ho o o\n')
39 check_attribs('executable-file.sh', expected_exec_bit=stat.S_IXUSR) 41 check_attribs('executable-file.sh', expected_exec_bit=stat.S_IXUSR)
40 42
41 test.pass_test() 43 test.pass_test()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698