[dds] Skip DAP tests

These tests appear to be consistently failing on some bots but the code they're testing is not currently in-use. These tests will be fixed and re-enabled before the code becomes used.

Change-Id: I235c8390381c0f82d4f60078e969d5c035ee2e94
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/202740
Reviewed-by: Ben Konyi <bkonyi@google.com>
This commit is contained in:
Danny Tuppeny 2021-06-07 16:09:25 +00:00 committed by Ben Konyi
parent 7eb68216bb
commit cfd5cf3cd6
3 changed files with 9 additions and 3 deletions

View file

@ -31,6 +31,8 @@ void main(List<String> args) async {
'Exited.',
]);
});
});
// Tests are temporarily skipped while failing bots are being investigated.
// The code being tested is not currently used by anything other than tests.
}, skip: true);
});
}

View file

@ -42,6 +42,8 @@ void main(List<String> args) async {
'Exited.',
]);
});
});
// Tests are temporarily skipped while failing bots are being investigated.
// The code being tested is not currently used by anything other than tests.
}, skip: true);
});
}

View file

@ -35,6 +35,8 @@ void main(List<String> args) async {
'Exited.',
]);
});
});
// Tests are temporarily skipped while failing bots are being investigated.
// The code being tested is not currently used by anything other than tests.
}, skip: true);
});
}