aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAlexandre Rames <alexandre.rames@linaro.org>2016-05-23 13:28:29 +0100
committerAlexandre Rames <alexandre.rames@linaro.org>2016-05-23 14:04:12 +0100
commit0af84bec28fe5c4dda123142b163c16e90336c22 (patch)
treeff50bcfbe57d63adc3385fbe2a5c859e0a184113 /test
parent2e38daa21106bd3b0c0ce828401c8e744694f7d8 (diff)
downloadart-testing-0af84bec28fe5c4dda123142b163c16e90336c22.tar.gz
Print geomean in `compare.py`.
Change-Id: I01dfa8fc6e33b2a771264a4e52f6b81378b86a1e
Diffstat (limited to 'test')
-rwxr-xr-xtest/test.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/test.py b/test/test.py
index 93e460d..5e24eaf 100755
--- a/test/test.py
+++ b/test/test.py
@@ -107,21 +107,6 @@ def TestBenchmarksOnTarget(target):
return TestBenchmarksCommon(target)
-def TestBenchmarksCompareScript():
- rc = 0
- run_py = os.path.join(".", "tools", "benchmarks", "run.py")
- compare_py = os.path.join(".", "tools", "benchmarks", "compare.py")
- benchmarks_filter = ["--filter", "benchmarks/algorithm/*"]
- rc |= TestCommand([run_py, "--output-json=/tmp/res1"] + benchmarks_filter, _cwd=utils.dir_root)
- rc |= TestCommand([run_py, "--output-json=/tmp/res2"] + benchmarks_filter, _cwd=utils.dir_root)
- rc |= TestCommand([compare_py, "/tmp/res1", "/tmp/res2"], _cwd=utils.dir_root)
- rc |= TestCommand([compare_py, "--significant-changes", "/tmp/res1", "/tmp/res2"], _cwd=utils.dir_root)
- rc |= TestCommand([compare_py, "--order-by-diff", "/tmp/res1", "/tmp/res2"], _cwd=utils.dir_root)
- rc |= TestCommand([compare_py, "--filter", "benchmarks/algorithm/Crypto*", "/tmp/res1", "/tmp/res2"], _cwd=utils.dir_root)
- rc |= TestCommand([compare_py, "--filter-out", "benchmarks/algorithm/Crypto*", "/tmp/res1", "/tmp/res2"], _cwd=utils.dir_root)
- return rc
-
-
def TestBenchmarkPackages():
benchmark_files = []
# TODO: Automatically test that each benchmark has the correct package.
@@ -180,7 +165,6 @@ if __name__ == "__main__":
rc = 0
if not args.no_host_tests:
rc |= TestBenchmarksOnHost()
- rc |= TestBenchmarksCompareScript()
rc |= TestBenchmarkPackages()
rc |= TestLint(args.jobs)
rc |= TestTopLevelWrapperScripts()