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.
dotc -tasty
dotr -classpath
1 parent ba2bb4a commit 069c36dCopy full SHA for 069c36d
project/scripts/sbtTests
@@ -11,3 +11,15 @@ if grep -e "dotr test ok" sbtdotr.out; then
11
else
12
exit -1
13
fi
14
+
15
+# check that `dotc` compiles and `dotr` runs it
16
+echo "testing sbt dotc -tasty and dotr -classpath"
17
+mkdir out
18
+mkdir out/scriptedtest
19
+mkdir out/scriptedtest2
20
+./project/scripts/sbt ";dotc tests/pos/sbtDotrTest.scala -d out/scriptedtest/; dotc -tasty -classpath out/scriptedtest/ -d out/scriptedtest2/ dotrtest.Test; dotr -classpath out/scriptedtest2/ dotrtest.Test" > sbtdotr2.out
21
+if grep -e "dotr test ok" sbtdotr2.out; then
22
+ echo "output ok"
23
+else
24
+ exit -1
25
+fi
0 commit comments