diff options
author | 2025-03-19 15:21:10 +0000 | |
---|---|---|
committer | 2025-03-20 07:31:29 -0700 | |
commit | 8badd481972993739e7711258f03a44638ca87a5 (patch) | |
tree | 2eaaab32b255ddc6d569cf3e255eb1acae79f9b8 /test/default_run.py | |
parent | aa42bf962cdd12abac143a26a8590f563910f7b6 (diff) |
Run-test: Remove intermediate files from the build output.
This removes 90%+ of files in the data for run-tests,
which is needed to build but not to execute the tests.
(original source code and java-bytecode class files)
Trade-fed has its own implementation of 'adb push',
which is very slow, so the extra files considerably
slowed everything down.
Test: ./art/test.py -r --jvm --host --target --optimizing --64
Change-Id: Ie4da1b9c9e94f0d265fdb384948a073593983ac5
Diffstat (limited to 'test/default_run.py')
-rwxr-xr-x | test/default_run.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/default_run.py b/test/default_run.py index 86e4996ca1..85cf4a97ad 100755 --- a/test/default_run.py +++ b/test/default_run.py @@ -924,7 +924,7 @@ def default_run(ctx, args, **kwargs): args = [] for arg in cmdline.split(" "): if arg == "--class-loader-context=&": - arg = "--class-loader-context=\&" + arg = r"--class-loader-context=\&" args.append(arg) return " ".join(args) |