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

Unified Diff: tests/standalone/precompilation_test.dart

Issue 1844233002: Add diagnostic printing to standalone/precompilation_test. (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 | « tests/standalone/precompilation_dart2js_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/precompilation_test.dart
diff --git a/tests/standalone/precompilation_test.dart b/tests/standalone/precompilation_test.dart
index ad493c9ae635c28fde0a08869407c8c844c827bb..c35cfcc67dc17797964f439892f0d0e58505d2fd 100644
--- a/tests/standalone/precompilation_test.dart
+++ b/tests/standalone/precompilation_test.dart
@@ -43,6 +43,7 @@ main(List args) {
return;
}
+ print("Creating precompiled snapshot...");
var dart_executable =
Directory.current.path + Platform.pathSeparator + Platform.executable;
Directory tmp;
@@ -59,6 +60,7 @@ main(List args) {
}
// Check if gcc is present, and skip test if it is not.
+ print("Creating shared library...");
try {
result = Process.runSync(
cc,
@@ -82,6 +84,7 @@ main(List args) {
throw "Shared library creation failed!";
}
+ print("Running test program...");
var ld_library_path = new String.fromEnvironment("LD_LIBRARY_PATH");
ld_library_path = "${ld_library_path}:${tmp.path}";
« no previous file with comments | « tests/standalone/precompilation_dart2js_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698