Skip to content

Commit dfa9cc0

Browse files
DanTupCommit Queue
authored andcommitted
[dds/dap] Enable verbose logging for flaky test
Trying to track down the failure shown here, but haven't had any luck reproducing it locally or on the trybots: https://dart-ci.appspot.com/log/pkg-linux-release/unittest-asserts-release-linux-x64/28665/pkg/dds/test/dap/integration/debug_exceptions_test Change-Id: Ied27b69324a602a4039eedfe997c604f6212f5b0 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/390221 Reviewed-by: Ben Konyi <[email protected]> Commit-Queue: Ben Konyi <[email protected]> Reviewed-by: Derek Xu <[email protected]>
1 parent b9f255c commit dfa9cc0

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

pkg/dds/test/dap/integration/debug_exceptions_test.dart

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,20 @@ main() {
7373
exceptionPauseMode: 'All',
7474
);
7575
});
76+
// These tests can be slow due to starting up the external server process.
77+
}, timeout: Timeout.none);
78+
79+
group('debug mode (verbose)', () {
80+
late DapTestSession dap;
81+
setUp(() async {
82+
dap = await DapTestSession.setUp(
83+
// This boolean is temporarily set to `true` to aid debugging
84+
// this test and will be reverted (and this additional group removed)
85+
// soon.
86+
forceVerboseLogging: true,
87+
);
88+
});
89+
tearDown(() => dap.tearDown());
7690

7791
test('parses line/column information from stack traces', () async {
7892
final client = dap.client;

0 commit comments

Comments
 (0)