From 7fa93931053ce83cc677ad76adb35383b0e7a628 Mon Sep 17 00:00:00 2001 From: John McCutchan Date: Fri, 15 Jul 2016 14:53:54 -0700 Subject: [PATCH] Remove windows debug print and trace shutdown on some tests BUG= Review URL: https://codereview.chromium.org/2153813003 . --- runtime/bin/extensions_win.cc | 1 - tests/isolate/package_config_test.dart | 2 +- tests/standalone/io/http_basic_test.dart | 8 ++++---- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/runtime/bin/extensions_win.cc b/runtime/bin/extensions_win.cc index 19ccb808a59..493acad450e 100644 --- a/runtime/bin/extensions_win.cc +++ b/runtime/bin/extensions_win.cc @@ -18,7 +18,6 @@ const char* kPrecompiledDataSymbolName = "_kDataSnapshot"; void* Extensions::LoadExtensionLibrary(const char* library_file) { SetLastError(0); - fprintf(stderr, "trying to load %s\n", library_file); return LoadLibraryW(StringUtilsWin::Utf8ToWide(library_file)); } diff --git a/tests/isolate/package_config_test.dart b/tests/isolate/package_config_test.dart index 1b55194d0a1..58792d9bdf1 100644 --- a/tests/isolate/package_config_test.dart +++ b/tests/isolate/package_config_test.dart @@ -1,7 +1,7 @@ // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. - +// VMOptions=--trace_shutdown import 'dart:io'; import 'dart:isolate'; diff --git a/tests/standalone/io/http_basic_test.dart b/tests/standalone/io/http_basic_test.dart index f30a32b7ada..266dd8feba5 100644 --- a/tests/standalone/io/http_basic_test.dart +++ b/tests/standalone/io/http_basic_test.dart @@ -2,10 +2,10 @@ // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. // -// VMOptions= -// VMOptions=--short_socket_read -// VMOptions=--short_socket_write -// VMOptions=--short_socket_read --short_socket_write +// VMOptions=--trace_shutdown +// VMOptions=--trace_shutdown --short_socket_read +// VMOptions=--trace_shutdown --short_socket_write +// VMOptions=--trace_shutdown --short_socket_read --short_socket_write import "package:expect/expect.dart"; import "dart:isolate";