-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into dwds2421
- Loading branch information
Showing
7 changed files
with
56 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
dwds/test/instances/record_inspection_ddc_library_bundle_test.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// Copyright (c) 2024, 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: 2)) | ||
library; | ||
|
||
import 'package:dwds/src/services/expression_compiler.dart'; | ||
import 'package:test/test.dart'; | ||
import 'package:test_common/test_sdk_configuration.dart'; | ||
|
||
import '../fixtures/context.dart'; | ||
import 'common/record_inspection_common.dart'; | ||
|
||
void main() { | ||
// Enable verbose logging for debugging. | ||
final debug = false; | ||
final canaryFeatures = true; | ||
final compilationMode = CompilationMode.frontendServer; | ||
|
||
group('canary: $canaryFeatures |', () { | ||
final provider = TestSdkConfigurationProvider( | ||
verbose: debug, | ||
canaryFeatures: canaryFeatures, | ||
ddcModuleFormat: ModuleFormat.ddc, | ||
); | ||
tearDownAll(provider.dispose); | ||
runTests( | ||
provider: provider, | ||
compilationMode: compilationMode, | ||
canaryFeatures: canaryFeatures, | ||
debug: debug, | ||
); | ||
}); | ||
} |