Skip to content

Commit 03cc56e

Browse files
authored
mark flaky windows test as skipped (#2151)
See #2150 Also removes an accidental debug print that was landed
1 parent 6e7e4fa commit 03cc56e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pkgs/test/lib/src/runner/browser/compilers/dart2wasm.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@ class Dart2WasmSupport implements CompilerSupport {
116116
/// A handler that serves wrapper files used to bootstrap tests.
117117
shelf.Response _wrapperHandler(shelf.Request request) {
118118
var path = p.fromUri(request.url);
119-
print(request.url);
120119

121120
if (path.endsWith('.html')) {
122121
var test = '${p.withoutExtension(path)}.dart';

pkgs/test/test/runner/compiler_runtime_matrix_test.dart

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,10 @@ void main() {
108108
expect(test.stdout, emitsThrough('hello'));
109109
expect(test.stderr, emits('world'));
110110
await test.shouldExit(0);
111-
});
111+
},
112+
skip: Platform.isWindows && compiler == Compiler.exe
113+
? 'https://github.com/dart-lang/test/issues/2150'
114+
: null);
112115
}
113116
},
114117
skip: compiler == Compiler.dart2wasm

0 commit comments

Comments
 (0)