summaryrefslogtreecommitdiff
path: root/src/partest
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-04-12 21:36:33 +0000
committerPaul Phillips <paulp@improving.org>2010-04-12 21:36:33 +0000
commit7015c96b21d4d5ae7f5bdd9f921bbf0aeef9856c (patch)
tree102023fb372eff8ae726320f7108fe2f3071f5f2 /src/partest
parentbeee01e9ec6c650a7ebf17489f97896f6d3d119f (diff)
downloadscala-7015c96b21d4d5ae7f5bdd9f921bbf0aeef9856c.tar.gz
scala-7015c96b21d4d5ae7f5bdd9f921bbf0aeef9856c.tar.bz2
scala-7015c96b21d4d5ae7f5bdd9f921bbf0aeef9856c.zip
Still working on partest.
temporary if considered clutter. ant test.partest ant test.partest-opt They run some recently troublesome partest tests with a low timeout. Logged some more exceptions where the compiler has been dying. Review by phaller.
Diffstat (limited to 'src/partest')
-rw-r--r--src/partest/scala/tools/partest/Compilable.scala3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/partest/scala/tools/partest/Compilable.scala b/src/partest/scala/tools/partest/Compilable.scala
index 6703d8a803..73dcdfce73 100644
--- a/src/partest/scala/tools/partest/Compilable.scala
+++ b/src/partest/scala/tools/partest/Compilable.scala
@@ -85,6 +85,9 @@ trait PartestCompilation {
case FatalError(msg) => creporter.error(null, "fatal error: " + msg)
case ae: AssertionError => creporter.error(null, ""+ae)
case te: TypeError => creporter.error(null, ""+te)
+ case ex =>
+ creporter.error(null, ""+ex)
+ throw ex
}
if (printSummary)