From 67ea4b702725e9c503131db3bc9a91762b7c7910 Mon Sep 17 00:00:00 2001 From: Nate Bosch Date: Fri, 1 Aug 2025 00:38:33 +0000 Subject: [PATCH] Drop executable arguments forwarding Closes #2527 During the null safety migration there were `dart` level flags that needed to be kept in sync for precompiled JS tests so the platform executable arguments were forwarded direclty. This is currently causing a test failure, and there are no null safety related `dart` level flags so drop the forwarding. --- pkgs/test/test/runner/precompiled_test.dart | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/test/test/runner/precompiled_test.dart b/pkgs/test/test/runner/precompiled_test.dart index 717128529..9d02cfdc1 100644 --- a/pkgs/test/test/runner/precompiled_test.dart +++ b/pkgs/test/test/runner/precompiled_test.dart @@ -272,7 +272,6 @@ Future _precompileBrowserTest(String testPath) async { var dart2js = await TestProcess.start(Platform.resolvedExecutable, [ 'compile', 'js', - ...Platform.executableArguments, '--packages=${(await Isolate.packageConfig)!.toFilePath()}', file.path, '--out=precompiled/$testPath.browser_test.dart.js',