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

Unified Diff: test/simdjs/testcfg.py

Issue 2227613002: [test] Deprecate test data download for most test suites (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/mozilla/testcfg.py ('k') | test/test262/testcfg.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/simdjs/testcfg.py
diff --git a/test/simdjs/testcfg.py b/test/simdjs/testcfg.py
index c055d5a3d34b1ce8fc419ed49b27f140db022221..d22368b0a633b5bcc08e28e172d11ab977557322 100644
--- a/test/simdjs/testcfg.py
+++ b/test/simdjs/testcfg.py
@@ -4,7 +4,6 @@
import os
-import shutil
import sys
from testrunner.local import testsuite
@@ -53,21 +52,6 @@ class SimdJsTestSuite(testsuite.TestSuite):
return True
return "FAILED!" in testcase.output.stdout
- def DownloadData(self):
- print "SimdJs download is deprecated. It's part of DEPS."
-
- # Clean up old directories and archive files.
- directory_old_name = os.path.join(self.root, "data.old")
- if os.path.exists(directory_old_name):
- shutil.rmtree(directory_old_name)
-
- archive_files = [f for f in os.listdir(self.root)
- if f.startswith("ecmascript_simd-")]
- if len(archive_files) > 0:
- print "Clobber outdated test archives ..."
- for f in archive_files:
- os.remove(os.path.join(self.root, f))
-
def GetSuite(name, root):
return SimdJsTestSuite(name, root)
« no previous file with comments | « test/mozilla/testcfg.py ('k') | test/test262/testcfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698