There was an error while loading. Please reload this page.
1 parent 5b1be80 commit 8b260b7Copy full SHA for 8b260b7
pkg/test_runner/lib/src/compiler_configuration.dart
@@ -1423,6 +1423,12 @@ abstract mixin class VMKernelCompilerMixin {
1423
return Path('$tempDir/out.dll').toNativePath();
1424
}
1425
1426
+ if (_configuration.genSnapshotFormat == GenSnapshotFormat.machODylib) {
1427
+ return Path('$tempDir/libout.dylib').toNativePath();
1428
+ }
1429
+ if (_configuration.genSnapshotFormat == GenSnapshotFormat.elf) {
1430
+ return Path('$tempDir/libout.so').toNativePath();
1431
1432
return Path('$tempDir/out.aotsnapshot').toNativePath();
1433
1434
0 commit comments