Skip to content

Commit 35887d1

Browse files
jensjohaCommit Queue
authored andcommitted
[CFE] Fix some missing fasta renames
Change-Id: I060a0f70172405d243ae2a92842ffb2fc8e61f9f Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/395880 Commit-Queue: Jens Johansen <[email protected]> Reviewed-by: Johnni Winther <[email protected]>
1 parent 808fa4c commit 35887d1

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

pkg/front_end/test/isolates_v_processes.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ Future<void> entry(List<int> args) async {
5656
await runMe(
5757
["-DskipVm=true", "-DsemiFuzz=false"],
5858
strong.createContext,
59-
me: Platform.script.resolve("fasta/strong_suite.dart"),
60-
configurationPath: "../../testing.json",
59+
me: Platform.script.resolve("strong_suite.dart"),
60+
configurationPath: "../testing.json",
6161
shards: args[0],
6262
shard: args[1],
6363
logger: doPrint ? const StdoutLogger() : const DevNullLogger(),

pkg/front_end/test/run_all_coverage.dart

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,17 @@ Future<void> main() async {
4242
]);
4343
}
4444

45-
addSuiteSkipVm("pkg/front_end/test/fasta/strong_suite.dart");
46-
addSuiteSkipVm("pkg/front_end/test/fasta/modular_suite.dart");
47-
addSuiteSkipVm("pkg/front_end/test/fasta/weak_suite.dart");
45+
addSuiteSkipVm("pkg/front_end/test/strong_suite.dart");
46+
addSuiteSkipVm("pkg/front_end/test/modular_suite.dart");
47+
addSuiteSkipVm("pkg/front_end/test/weak_suite.dart");
4848

49-
addWithCoverageArgument("pkg/front_end/test/fasta/messages_suite.dart");
50-
addWithCoverageArgument("pkg/front_end/test/fasta/outline_suite.dart");
49+
addWithCoverageArgument("pkg/front_end/test/messages_suite.dart");
50+
addWithCoverageArgument("pkg/front_end/test/outline_suite.dart");
5151
addWithCoverageArgument(
52-
"pkg/front_end/test/fasta/textual_outline_suite.dart");
53-
addWithCoverageArgument("pkg/front_end/test/fasta/expression_suite.dart");
52+
"pkg/front_end/test/textual_outline_suite.dart");
53+
addWithCoverageArgument("pkg/front_end/test/expression_suite.dart");
5454
addWithCoverageArgument(
55-
"pkg/front_end/test/fasta/incremental_dartino_suite.dart");
55+
"pkg/front_end/test/incremental_dartino_suite.dart");
5656
addWithCoverageArgument("pkg/front_end/test/dartdoctest_suite.dart");
5757
addWithCoverageArgument(
5858
"pkg/front_end/test/incremental_bulk_compiler_smoke_suite.dart");

pkg/front_end/test/weekly_tester.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Future<void> main(List<String> args) async {
4141

4242
{
4343
// Weak suite with fuzzing.
44-
Uri weakSuite = Platform.script.resolve("fasta/weak_suite.dart");
44+
Uri weakSuite = Platform.script.resolve("weak_suite.dart");
4545
if (!new File.fromUri(weakSuite).existsSync()) {
4646
exitCode = 1;
4747
print("Couldn't find $weakSuite");
@@ -58,7 +58,7 @@ Future<void> main(List<String> args) async {
5858

5959
{
6060
// Strong suite with fuzzing.
61-
Uri strongSuite = Platform.script.resolve("fasta/strong_suite.dart");
61+
Uri strongSuite = Platform.script.resolve("strong_suite.dart");
6262
if (!new File.fromUri(strongSuite).existsSync()) {
6363
exitCode = 1;
6464
print("Couldn't find $strongSuite");
@@ -91,7 +91,7 @@ Future<void> main(List<String> args) async {
9191
{
9292
// Expression suite with fuzzing.
9393
Uri expressionSuite =
94-
Platform.script.resolve("fasta/expression_suite.dart");
94+
Platform.script.resolve("expression_suite.dart");
9595
if (!new File.fromUri(expressionSuite).existsSync()) {
9696
exitCode = 1;
9797
print("Couldn't find $expressionSuite");

0 commit comments

Comments
 (0)