We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36d422d commit d75092cCopy full SHA for d75092c
compiler/test-resources/repl/i6007 renamed to compiler/test-resources/repl-macros/i6007
compiler/test/dotty/tools/repl/ScriptedTests.scala
@@ -1,11 +1,13 @@
1
-package dotty.tools
+package dotty
2
+package tools
3
package repl
4
5
import java.io.{File => JFile}
6
import java.lang.System.{lineSeparator => EOL}
7
8
import org.junit.Assert._
9
import org.junit.Test
10
+import org.junit.experimental.categories.Category
11
12
import scala.collection.mutable.ArrayBuffer
13
import scala.io.Source
@@ -91,4 +93,7 @@ class ScriptedTests extends ReplTest with MessageRendering {
91
93
@Test def replTests = scripts("/repl").foreach(testFile)
92
94
95
@Test def typePrinterTests = scripts("/type-printer").foreach(testFile)
96
+
97
+ @Category(Array(classOf[BootstrappedOnlyTests]))
98
+ @Test def replMacrosTests = scripts("/repl-macros").foreach(testFile)
99
}
0 commit comments