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}
17 lines
561 B
Python
Executable File
17 lines
561 B
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 tarfile
|
|
from itertools import chain
|
|
|
|
os.chdir(os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
for root, dirs, files in chain(os.walk("data"), os.walk("harness")):
|
|
dirs[:] = [d for d in dirs if not d.endswith('.git')]
|
|
for name in files:
|
|
# These names are for gyp, which expects slashes on all platforms.
|
|
print('/'.join(root.split(os.sep) + [name]))
|