Skip to content

Commit 8308d65

Browse files
rmacnak-googleCommit Queue
authored andcommitted
Extend isolate stress testing to ARM64.
Cq-Include-Trybots: luci.dart.try:iso-stress-linux-try Change-Id: Ie0c2a281a4edc570b6532faadf01f06be259fd18 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/400144 Reviewed-by: Alexander Aprelev <[email protected]> Commit-Queue: Ryan Macnak <[email protected]>
1 parent 7303fca commit 8308d65

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

tools/bots/test_matrix.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3575,7 +3575,9 @@
35753575
},
35763576
{
35773577
"builders": [
3578-
"iso-stress-linux"
3578+
"iso-stress-linux",
3579+
"iso-stress-linux-x64",
3580+
"iso-stress-linux-arm64"
35793581
],
35803582
"meta": {
35813583
"description": "This configuration is used for isolate stress testing."
@@ -3586,7 +3588,6 @@
35863588
"script": "tools/build.py",
35873589
"arguments": [
35883590
"--mode=debug,release",
3589-
"--arch=x64",
35903591
"runtime",
35913592
"dartaotruntime"
35923593
]
@@ -3596,40 +3597,39 @@
35963597
"script": "tools/build.py",
35973598
"arguments": [
35983599
"--mode=release",
3599-
"--arch=x64",
36003600
"--sanitizer=tsan",
36013601
"runtime",
36023602
"dartaotruntime"
36033603
]
36043604
},
36053605
{
36063606
"name": "Generate Isolate Stress Test",
3607-
"script": "out/ReleaseX64/dart",
3607+
"script": "${build_root}/dart",
36083608
"arguments": [
36093609
"runtime/tests/concurrency/generate_stress_test.dart"
36103610
]
36113611
},
36123612
{
36133613
"name": "Generate Isolate Stress Test - JIT Dill",
3614-
"script": "out/ReleaseX64/dart",
3614+
"script": "${build_root}/dart",
36153615
"arguments": [
36163616
"pkg/vm/bin/gen_kernel.dart",
3617-
"--platform=out/ReleaseX64/vm_platform_strong.dill",
3617+
"--platform=${build_root}/vm_platform_strong.dill",
36183618
"--no-aot",
3619-
"-Dtest_runner.configuration=vm-linux-release-x64",
3619+
"-Dtest_runner.configuration=vm-linux-release-${arch}",
36203620
"-o",
36213621
"runtime/tests/concurrency/generated_stress_test.dart.jit.dill",
36223622
"runtime/tests/concurrency/generated_stress_test.dart"
36233623
]
36243624
},
36253625
{
36263626
"name": "Generate Isolate Stress Test - AOT Dill",
3627-
"script": "out/ReleaseX64/dart",
3627+
"script": "${build_root}/dart",
36283628
"arguments": [
36293629
"pkg/vm/bin/gen_kernel.dart",
3630-
"--platform=out/ReleaseX64/vm_platform_strong.dill",
3630+
"--platform=${build_root}/vm_platform_strong.dill",
36313631
"--aot",
3632-
"-Dtest_runner.configuration=vm-aot-linux-release-x64",
3632+
"-Dtest_runner.configuration=vm-aot-linux-release-${arch}",
36333633
"-o",
36343634
"runtime/tests/concurrency/generated_stress_test.dart.aot.dill",
36353635
"runtime/tests/concurrency/generated_stress_test.dart"
@@ -3639,7 +3639,7 @@
36393639
"name": "Run Isolate Stress Tests",
36403640
"script": "tools/run_with_coredumps_enabled.py",
36413641
"arguments": [
3642-
"out/ReleaseX64/dart",
3642+
"${build_root}/dart",
36433643
"runtime/tests/concurrency/run_stress_test_shards.dart",
36443644
"--copy-coredumps"
36453645
],

0 commit comments

Comments
 (0)