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

Side by Side Diff: runtime/tests/vm/dart/hello_fuchsia_test.dart

Issue 2536943002: Fuchsia: Enable newly working socket tests; use MX_CLOCK_UTC. (Closed)
Patch Set: Created 4 years 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 unified diff | Download patch
« no previous file with comments | « no previous file | runtime/vm/os_fuchsia.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import "dart:async"; 5 import "dart:async";
6 import "dart:io"; 6 import "dart:io";
7 7
8 testAddressParse() async { 8 testAddressParse() async {
9 print(new InternetAddress("1.0.2.3").rawAddress); 9 print(new InternetAddress("1.0.2.3").rawAddress);
10 print(new InternetAddress("1.0.2.3").type); 10 print(new InternetAddress("1.0.2.3").type);
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 print("testSimpleBind done"); 390 print("testSimpleBind done");
391 391
392 print("testSimpleConnect"); 392 print("testSimpleConnect");
393 await testSimpleConnect(); 393 await testSimpleConnect();
394 print("testSimpleConnect done"); 394 print("testSimpleConnect done");
395 395
396 print("testSimpleReadWriteClose"); 396 print("testSimpleReadWriteClose");
397 await testSimpleReadWriteClose(); 397 await testSimpleReadWriteClose();
398 print("testSimpleReadWriteClose done"); 398 print("testSimpleReadWriteClose done");
399 399
400 // TODO(US-81): Enable. 400 print("testSimpleReadWriteShutdown");
401 // print("testSimpleReadWriteShutdown"); 401 await testSimpleReadWriteShutdown(dropReads: false);
402 // await testSimpleReadWriteShutdown(dropReads: false); 402 print("testSimpleReadWriteShutdown done");
403 // print("testSimpleReadWriteShutdown done");
404 403
405 print("testGoogleHttp"); 404 print("testGoogleHttp");
406 await testGoogleHttp(null, 'pass'); 405 await testGoogleHttp(null, 'pass');
407 print("testGoogleHttp done"); 406 print("testGoogleHttp done");
408 407
409 // TODO(US-96) 408 print("testGoogleHttps");
410 // print("testGoogleHttps"); 409 await testGoogleHttps(null, 'pass');
411 // await testGoogleHttps(null, 'pass'); 410 print("testGoogleHttps done");
412 // print("testGoogleHttps done");
413 411
414 print("Goodbyte, Fuchsia!"); 412 print("Goodbyte, Fuchsia!");
415 } 413 }
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/os_fuchsia.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698