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

Side by Side Diff: test/test262/archive.py

Issue 2034713005: [gn] Port test262 archiving to gn (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 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
« test/test262/BUILD.gn ('K') | « test/test262/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2016 the V8 project authors. All rights reserved. 2 # Copyright 2016 the V8 project authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 import os 6 import os
7 import sys
7 import tarfile 8 import tarfile
9 import time
10
11 # In GN we expect the path to a stamp file as an argument.
12 if len(sys.argv) == 2:
13 STAMP_FILE = os.path.abspath(sys.argv[1])
8 14
9 os.chdir(os.path.dirname(os.path.abspath(__file__))) 15 os.chdir(os.path.dirname(os.path.abspath(__file__)))
10 16
11 # Workaround for slow grp and pwd calls. 17 # Workaround for slow grp and pwd calls.
12 tarfile.grp = None 18 tarfile.grp = None
13 tarfile.pwd = None 19 tarfile.pwd = None
14 20
15 def filter_git(tar_info): 21 def filter_git(tar_info):
16 if tar_info.name.startswith(os.path.join('data', '.git')): 22 if tar_info.name.startswith(os.path.join('data', '.git')):
17 return None 23 return None
18 else: 24 else:
19 tar_info.uname = tar_info.gname = "test262" 25 tar_info.uname = tar_info.gname = "test262"
20 return tar_info 26 return tar_info
21 27
22 with tarfile.open('data.tar', 'w') as tar: 28 with tarfile.open('data.tar', 'w') as tar:
23 tar.add('data', filter=filter_git) 29 tar.add('data', filter=filter_git)
30
31 # Workaround for GN. We can't specify the tarfile as output because it's
vogelheim 2016/06/06 08:48:26 Can we get around this workaround once the gyp dep
Michael Achenbach 2016/06/06 08:51:21 Not because of the deprecation. Only by investing
32 # not in the product directory. Therefore we track running of this script
33 # with an extra stamp file in the product directory.
34 if len(sys.argv) == 2:
35 with open(STAMP_FILE, 'w') as f:
36 f.write(str(time.time()))
OLDNEW
« test/test262/BUILD.gn ('K') | « test/test262/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698