Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(171)

Unified Diff: tools/testing/dart/runtime_configuration.dart

Issue 1771423002: Qualify the precompiled shared library name with the snapshot directory instead of using LD_LIBRARY… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/precompilation/test_macos.sh ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/runtime_configuration.dart
diff --git a/tools/testing/dart/runtime_configuration.dart b/tools/testing/dart/runtime_configuration.dart
index c2b2aed59ffe4b2a2856d179251c6f19a442f6fa..55cf8fe584c9966d9830685a2987a4f2a2283713 100644
--- a/tools/testing/dart/runtime_configuration.dart
+++ b/tools/testing/dart/runtime_configuration.dart
@@ -270,11 +270,10 @@ class DartPrecompiledRuntimeConfiguration extends DartVmRuntimeConfiguration {
augmentedArgs.add("--run-precompiled-snapshot=${artifact.filename}");
augmentedArgs.addAll(arguments);
- var augmentedEnv = new Map.from(environmentOverrides);
- augmentedEnv['LD_LIBRARY_PATH'] = artifact.filename;
-
return <Command>[commandBuilder.getVmCommand(
- suite.dartPrecompiledBinaryFileName, augmentedArgs, augmentedEnv)];
+ suite.dartPrecompiledBinaryFileName,
+ augmentedArgs,
+ environmentOverrides)];
}
}
« no previous file with comments | « tools/precompilation/test_macos.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698