|
3575 | 3575 | }, |
3576 | 3576 | { |
3577 | 3577 | "builders": [ |
3578 | | - "iso-stress-linux" |
| 3578 | + "iso-stress-linux", |
| 3579 | + "iso-stress-linux-x64", |
| 3580 | + "iso-stress-linux-arm64" |
3579 | 3581 | ], |
3580 | 3582 | "meta": { |
3581 | 3583 | "description": "This configuration is used for isolate stress testing." |
|
3586 | 3588 | "script": "tools/build.py", |
3587 | 3589 | "arguments": [ |
3588 | 3590 | "--mode=debug,release", |
3589 | | - "--arch=x64", |
3590 | 3591 | "runtime", |
3591 | 3592 | "dartaotruntime" |
3592 | 3593 | ] |
|
3596 | 3597 | "script": "tools/build.py", |
3597 | 3598 | "arguments": [ |
3598 | 3599 | "--mode=release", |
3599 | | - "--arch=x64", |
3600 | 3600 | "--sanitizer=tsan", |
3601 | 3601 | "runtime", |
3602 | 3602 | "dartaotruntime" |
3603 | 3603 | ] |
3604 | 3604 | }, |
3605 | 3605 | { |
3606 | 3606 | "name": "Generate Isolate Stress Test", |
3607 | | - "script": "out/ReleaseX64/dart", |
| 3607 | + "script": "${build_root}/dart", |
3608 | 3608 | "arguments": [ |
3609 | 3609 | "runtime/tests/concurrency/generate_stress_test.dart" |
3610 | 3610 | ] |
3611 | 3611 | }, |
3612 | 3612 | { |
3613 | 3613 | "name": "Generate Isolate Stress Test - JIT Dill", |
3614 | | - "script": "out/ReleaseX64/dart", |
| 3614 | + "script": "${build_root}/dart", |
3615 | 3615 | "arguments": [ |
3616 | 3616 | "pkg/vm/bin/gen_kernel.dart", |
3617 | | - "--platform=out/ReleaseX64/vm_platform_strong.dill", |
| 3617 | + "--platform=${build_root}/vm_platform_strong.dill", |
3618 | 3618 | "--no-aot", |
3619 | | - "-Dtest_runner.configuration=vm-linux-release-x64", |
| 3619 | + "-Dtest_runner.configuration=vm-linux-release-${arch}", |
3620 | 3620 | "-o", |
3621 | 3621 | "runtime/tests/concurrency/generated_stress_test.dart.jit.dill", |
3622 | 3622 | "runtime/tests/concurrency/generated_stress_test.dart" |
3623 | 3623 | ] |
3624 | 3624 | }, |
3625 | 3625 | { |
3626 | 3626 | "name": "Generate Isolate Stress Test - AOT Dill", |
3627 | | - "script": "out/ReleaseX64/dart", |
| 3627 | + "script": "${build_root}/dart", |
3628 | 3628 | "arguments": [ |
3629 | 3629 | "pkg/vm/bin/gen_kernel.dart", |
3630 | | - "--platform=out/ReleaseX64/vm_platform_strong.dill", |
| 3630 | + "--platform=${build_root}/vm_platform_strong.dill", |
3631 | 3631 | "--aot", |
3632 | | - "-Dtest_runner.configuration=vm-aot-linux-release-x64", |
| 3632 | + "-Dtest_runner.configuration=vm-aot-linux-release-${arch}", |
3633 | 3633 | "-o", |
3634 | 3634 | "runtime/tests/concurrency/generated_stress_test.dart.aot.dill", |
3635 | 3635 | "runtime/tests/concurrency/generated_stress_test.dart" |
|
3639 | 3639 | "name": "Run Isolate Stress Tests", |
3640 | 3640 | "script": "tools/run_with_coredumps_enabled.py", |
3641 | 3641 | "arguments": [ |
3642 | | - "out/ReleaseX64/dart", |
| 3642 | + "${build_root}/dart", |
3643 | 3643 | "runtime/tests/concurrency/run_stress_test_shards.dart", |
3644 | 3644 | "--copy-coredumps" |
3645 | 3645 | ], |
|
0 commit comments