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

Unified Diff: test/test_pub.dart

Issue 2357263002: Update status for failing resource tests. (Closed)
Patch Set: Created 4 years, 3 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
« test/run/resource_test.dart ('K') | « test/run/resource_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/test_pub.dart
diff --git a/test/test_pub.dart b/test/test_pub.dart
index 835ef3e39616a0c223eecd7bf451a810d0ac5b4c..4269750c70d3a34ebb059f4021e2977ab3d4205a 100644
--- a/test/test_pub.dart
+++ b/test/test_pub.dart
@@ -178,7 +178,12 @@ PubProcess pubRun({bool global: false, Iterable<String> args}) {
///
/// The [body] should schedule a series of operations which will be run
/// asynchronously.
-void integration(String description, void body()) {
+void integration(String description, void body(),
+ {String testOn,
+ Timeout timeout,
+ skip,
+ tags,
+ Map<String, dynamic> onPlatform}) {
test(description, () {
_sandboxDir = createSystemTempDir();
d.defaultRoot = sandboxDir;
@@ -195,7 +200,12 @@ void integration(String description, void body()) {
// Schedule the test.
body();
- });
+ },
+ testOn: testOn,
+ timeout: timeout,
+ skip: skip,
+ onPlatform: onPlatform,
+ tags: tags);
}
/// Schedules renaming (moving) the directory at [from] to [to], both of which
« test/run/resource_test.dart ('K') | « test/run/resource_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698