File tree 3 files changed +9
-9
lines changed
compiler/test/dotty/tools/vulpix 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -433,7 +433,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
433
433
434
434
def hasTastyFileToClassName (f : JFile ): String =
435
435
targetDir.toPath.relativize(f.toPath).toString.dropRight(" .hasTasty" .length).replace('/' , '.' )
436
- val classes = flattenFiles(targetDir).filter(isHasTastyFile).map(hasTastyFileToClassName)
436
+ val classes = flattenFiles(targetDir).filter(isHasTastyFile).map(hasTastyFileToClassName).sorted
437
437
438
438
val reporter =
439
439
TestReporter .reporter(realStdout, logLevel =
Original file line number Diff line number Diff line change 1
1
================================================================================
2
- out/posTestFromTasty/pos2 /simpleClass-2/foo/B .class
2
+ out/posTestFromTasty/pos /simpleClass-2/foo/A .class
3
3
--------------------------------------------------------------------------------
4
4
package foo {
5
- class B () extends Object () {}
5
+ class A () extends foo.B () {}
6
6
}
7
7
--------------------------------------------------------------------------------
8
8
================================================================================
9
- out/posTestFromTasty/pos2 /simpleClass-2/foo/A .class
9
+ out/posTestFromTasty/pos /simpleClass-2/foo/B .class
10
10
--------------------------------------------------------------------------------
11
11
package foo {
12
- class A () extends foo.B () {}
12
+ class B () extends Object () {}
13
13
}
14
14
--------------------------------------------------------------------------------
Original file line number Diff line number Diff line change 1
1
================================================================================
2
- out/posTestFromTasty/pos2 /simpleClass/foo/B .class
2
+ out/posTestFromTasty/pos /simpleClass/foo/A .class
3
3
--------------------------------------------------------------------------------
4
4
package foo {
5
- class B () extends foo.A () {}
5
+ class A () extends Object () {}
6
6
}
7
7
--------------------------------------------------------------------------------
8
8
================================================================================
9
- out/posTestFromTasty/pos2 /simpleClass/foo/A .class
9
+ out/posTestFromTasty/pos /simpleClass/foo/B .class
10
10
--------------------------------------------------------------------------------
11
11
package foo {
12
- class A () extends Object () {}
12
+ class B () extends foo.A () {}
13
13
}
14
14
--------------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments