Re-enable bash_entrypoint_test.dart (#165809)

The test was fixed in
d443df008b
but never re-enabled.

Fixes https://github.com/flutter/flutter/issues/160689
This commit is contained in:
Ben Konyi
2025-03-24 14:47:17 -04:00
committed by GitHub
parent 2c58a631fe
commit a664992fe0

View File

@@ -94,7 +94,7 @@ echo downloaded dart sdk
''');
makeExecutable(updateDartSdk);
final File udpateEngine = tempDir
final File updateEngine = tempDir
.childDirectory('bin')
.childDirectory('internal')
.childFile('update_engine_version.sh')..writeAsStringSync('''
@@ -102,7 +102,7 @@ echo downloaded dart sdk
echo engine version
''');
makeExecutable(udpateEngine);
makeExecutable(updateEngine);
// create a fake dart runtime
final File dartBin = (tempDir
@@ -130,7 +130,7 @@ echo executed dart binary
} finally {
tryToDelete(tempDir);
}
}, skip: true); // [intended] https://github.com/flutter/flutter/issues/160689
}, skip: platform.isWindows); // [intended] Windows does not use the bash entrypoint);
}
// A test Dart app that will run until it receives SIGTERM