forked from dart-lang/webdev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrontend_server_ddc_evaluate_test.dart
52 lines (45 loc) · 1.52 KB
/
frontend_server_ddc_evaluate_test.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
@Tags(['daily'])
@TestOn('vm')
@Timeout(Duration(minutes: 5))
library;
import 'dart:io';
import 'package:dwds/expression_compiler.dart';
import 'package:test/test.dart';
import 'package:test_common/test_sdk_configuration.dart';
import 'evaluate_common.dart';
import 'fixtures/context.dart';
import 'fixtures/project.dart';
void main() async {
// Enable verbose logging for debugging.
final debug = false;
final provider = TestSdkConfigurationProvider(
verbose: debug,
ddcModuleFormat: ModuleFormat.ddc,
);
tearDownAll(provider.dispose);
for (final useDebuggerModuleNames in [false, true]) {
group('Debugger module names: $useDebuggerModuleNames |', () {
group('DDC module system |', () {
for (final indexBaseMode in IndexBaseMode.values) {
group(
'with ${indexBaseMode.name} |',
() {
testAll(
provider: provider,
compilationMode: CompilationMode.frontendServer,
indexBaseMode: indexBaseMode,
useDebuggerModuleNames: useDebuggerModuleNames,
debug: debug,
);
},
// https://github.com/dart-lang/sdk/issues/49277
skip: indexBaseMode == IndexBaseMode.base && Platform.isWindows,
);
}
});
});
}
}