File tree Expand file tree Collapse file tree 3 files changed +13
-13
lines changed Expand file tree Collapse file tree 3 files changed +13
-13
lines changed Original file line number Diff line number Diff 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 (),
Original file line number Diff line number Diff 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" );
Original file line number Diff line number Diff 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 " );
You can’t perform that action at this time.
0 commit comments