3d0a663518
With explicit exit() invocation, frontend_server_test only gets through first two tests before exiting. Change-Id: Ica0b6f4f09baa8262b6097779be772877ca6f8d8 Reviewed-on: https://dart-review.googlesource.com/69220 Commit-Queue: Alexander Aprelev <aam@google.com> Reviewed-by: Ryan Macnak <rmacnak@google.com>
14 lines
243 B
Dart
14 lines
243 B
Dart
library frontend_server;
|
|
|
|
import 'dart:async';
|
|
import 'dart:io';
|
|
|
|
import '../lib/frontend_server.dart';
|
|
|
|
Future<Null> main(List<String> args) async {
|
|
final int exitCode = await starter(args);
|
|
if (exitCode != 0) {
|
|
exit(exitCode);
|
|
}
|
|
}
|