OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 library vm_test_config; | 5 import 'configuration.dart'; |
6 | |
7 import 'test_suite.dart'; | 6 import 'test_suite.dart'; |
8 | 7 |
9 class VMTestSuite extends CCTestSuite { | 8 class VMTestSuite extends CCTestSuite { |
10 VMTestSuite(Map<String, dynamic> configuration) | 9 VMTestSuite(Configuration configuration) |
11 : super( | 10 : super( |
12 configuration, "vm", "run_vm_tests", ["runtime/tests/vm/vm.status"], | 11 configuration, "vm", "run_vm_tests", ["runtime/tests/vm/vm.status"], |
13 testPrefix: 'cc/'); | 12 testPrefix: 'cc/'); |
14 } | 13 } |
OLD | NEW |