summaryrefslogtreecommitdiff
path: root/src/partest-extras
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@gmail.com>2014-05-02 15:31:07 +0200
committerLukas Rytz <lukas.rytz@gmail.com>2014-05-07 12:22:06 +0200
commit10d77e905bf631ab7a7ade9e7a6b6d5abf2596f4 (patch)
tree606e456d8e379b79d80725ea8059019a9b7c488f /src/partest-extras
parent251616a107f4255203e318c9f6342f774d25e66d (diff)
downloadscala-10d77e905bf631ab7a7ade9e7a6b6d5abf2596f4.tar.gz
scala-10d77e905bf631ab7a7ade9e7a6b6d5abf2596f4.tar.bz2
scala-10d77e905bf631ab7a7ade9e7a6b6d5abf2596f4.zip
Respect -Dpartest.scalac_opts when running the test suite through ANT
Used to enable `-Xcheckinit` (now also `-Ybackend:GenBCode`) when compiling tests in the respective jenkins builds. This is currently broken, as you can see in [recent build logs] [1], `-Xcheckinit` is missing: [partest] Scalac options are: -optimise Adds `.flags` files for macro tests (correct range positions not enforced) and for tests failing due to SI-8560 or SI-8562. [1]: https://scala-webapps.epfl.ch/jenkins/view/nightlies/job/scala-nightly-checkinit/2058/consoleFull
Diffstat (limited to 'src/partest-extras')
-rw-r--r--src/partest-extras/scala/tools/partest/BytecodeTest.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/partest-extras/scala/tools/partest/BytecodeTest.scala b/src/partest-extras/scala/tools/partest/BytecodeTest.scala
index 7650a892fd..1e4362fcde 100644
--- a/src/partest-extras/scala/tools/partest/BytecodeTest.scala
+++ b/src/partest-extras/scala/tools/partest/BytecodeTest.scala
@@ -34,7 +34,7 @@ abstract class BytecodeTest extends ASMConverters {
/** produce the output to be compared against a checkfile */
protected def show(): Unit
- def main(args: Array[String]): Unit = show
+ def main(args: Array[String]): Unit = show()
// asserts
def sameBytecode(methA: MethodNode, methB: MethodNode) = {