9f45c188dd
TC-39 recently decided to remove the Python-based testing harness from the
Test262 project [1]. The code has been duplicated in a standalone project;
update V8's dependencies to fetch from that new location. This is based on
an earlier patch by Mike Pennisi.
[1] 2b9722db9b/es7/2016-05/may-25.md
BUG=v8:5078
Review-Url: https://codereview.chromium.org/2131743002
Cr-Commit-Position: refs/heads/master@{#37985}
39 lines
1.1 KiB
Python
Executable File
39 lines
1.1 KiB
Python
Executable File
#!/usr/bin/env python
|
|
# Copyright 2016 the V8 project authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import os
|
|
import sys
|
|
import tarfile
|
|
import time
|
|
|
|
# In GN we expect the path to a stamp file as an argument.
|
|
if len(sys.argv) == 2:
|
|
STAMP_FILE = os.path.abspath(sys.argv[1])
|
|
|
|
os.chdir(os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
# Workaround for slow grp and pwd calls.
|
|
tarfile.grp = None
|
|
tarfile.pwd = None
|
|
|
|
def filter_git(tar_info):
|
|
if tar_info.name.startswith(os.path.join('data', '.git')) or \
|
|
tar_info.name.startswith(os.path.join('harness', '.git')):
|
|
return None
|
|
else:
|
|
tar_info.uname = tar_info.gname = "test262"
|
|
return tar_info
|
|
|
|
with tarfile.open('data.tar', 'w') as tar:
|
|
tar.add('data', filter=filter_git)
|
|
tar.add('harness', filter=filter_git)
|
|
|
|
# Workaround for GN. We can't specify the tarfile as output because it's
|
|
# not in the product directory. Therefore we track running of this script
|
|
# with an extra stamp file in the product directory.
|
|
if len(sys.argv) == 2:
|
|
with open(STAMP_FILE, 'w') as f:
|
|
f.write(str(time.time()))
|