Skip to content

Commit 43e4bfa

Browse files
authored
Merge pull request #9009 from dotty-staging/run-macro-tests-with-bootstrapped-compiler
Run macro tests with bootstrapped compiler
2 parents d463a9e + 3731b0d commit 43e4bfa

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

compiler/test/dotty/tools/dotc/BootstrappedOnlyCompilationTests.scala

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ class BootstrappedOnlyCompilationTests extends ParallelTesting {
3232

3333
@Test def posMacros: Unit = {
3434
implicit val testGroup: TestGroup = TestGroup("compilePosMacros")
35-
compileFilesInDir("tests/pos-macros", defaultOptions).checkCompile()
35+
aggregateTests(
36+
compileFilesInDir("tests/pos-macros", defaultOptions),
37+
compileFilesInDir("tests/pos-custom-args/semanticdb", defaultOptions.and("-Ysemanticdb")),
38+
).checkCompile()
3639
}
3740

3841
@Test def posWithCompiler: Unit = {

compiler/test/dotty/tools/dotc/CompilationTests.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ class CompilationTests extends ParallelTesting {
4949
compileFilesInDir("tests/new", defaultOptions),
5050
compileFilesInDir("tests/pos-scala2", scala2CompatMode),
5151
compileFilesInDir("tests/pos-custom-args/erased", defaultOptions.and("-Yerased-terms")),
52-
compileFilesInDir("tests/pos-custom-args/semanticdb", defaultOptions.and("-Ysemanticdb")),
5352
compileFilesInDir("tests/pos", defaultOptions),
5453
compileFilesInDir("tests/pos-deep-subtype", allowDeepSubtypes),
5554
compileFile(

0 commit comments

Comments
 (0)