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

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

Issue 61293004: ninja generator vs file permissions (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « pylib/gyp/mac_tool.py ('k') | test/copies/src/copies-attribs.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env python
2
3 # Copyright (c) 2009 Google Inc. All rights reserved.
Mark Mentovai 2013/11/06 03:10:12 2013
Nico 2013/11/06 03:16:41 Done.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
7 """
8 Verifies that copying files preserves file attributes.
9 """
10
11 import TestGyp
12
13 import os
14 import stat
15 import sys
16
17
18 def check_attribs(path, expected_exec_bit):
19 out_path = test.built_file_path(path, chdir='src')
20
21 in_stat = os.stat(os.path.join('src', path))
22 out_stat = os.stat(out_path)
23 if in_stat.st_mode != out_stat.st_mode:
Mark Mentovai 2013/11/06 03:10:12 But checking whether the source file and the desti
Nico 2013/11/06 03:16:41 ok, removed this (looks like mac_tool.py ignores
24 test.fail_test()
25 if out_stat.st_mode & stat.S_IXUSR != expected_exec_bit:
26 test.fail_test()
27
28
29 test = TestGyp.TestGyp()
30
31 test.run_gyp('copies-attribs.gyp', chdir='src')
32
33 test.build('copies-attribs.gyp', chdir='src')
34
35 if sys.platform != 'win32':
36 out_path = test.built_file_path('executable-file.sh', chdir='src')
37 test.must_contain(out_path,
38 '#!/bin/bash\n'
39 '\n'
40 'echo echo echo echo cho ho o o\n')
41 check_attribs('executable-file.sh', expected_exec_bit=stat.S_IXUSR)
42
43 test.pass_test()
OLDNEW
« no previous file with comments | « pylib/gyp/mac_tool.py ('k') | test/copies/src/copies-attribs.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698