[gardening] Skip test that requires aot on ia32.

TEST=vm/dart/isolates/regress_54528_test

Change-Id: I31c26a4f61ed45128dacf94fff46ffc08f010a55
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/349624
Reviewed-by: Daco Harkes <dacoharkes@google.com>
Commit-Queue: Alexander Aprelev <aam@google.com>
This commit is contained in:
Alexander Aprelev 2024-02-01 16:07:49 +00:00 committed by Commit Queue
parent bdb3996a5d
commit 3a3433fd38

View file

@ -22,6 +22,9 @@ void main() async {
if (Platform.isAndroid || Platform.isIOS) {
return; // SDK tree not available on the test device.
}
if (Platform.version.contains('ia32')) {
return; // AOT is not available for ia32
}
// These are the tools we need to be available to run on a given platform:
if (!File(platformDill).existsSync()) {