From e8a121e9e1ade3f283f42fceb3c18f30a8468f57 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Mon, 5 Apr 2010 06:24:22 +0000 Subject: If I work on this patch any longer without chec... If I work on this patch any longer without checking in I will go stark raving mad. It is broken up into a couple pieces. This one is the changes to test/. It includes fixing a bunch of tests, removing deprecated constructs, moving jars used by tests to the most specific plausible location rather than having all jars on the classpath of all tests, and some filesystem layout change (continuations get their whole own srcpath.) This would be the world's most tedious review, so let's say no review. [Note: after this commit, I doubt things will build very smoothly until the rest of the partest changes follow. Which should only be seconds, but just in case.] --- test/disabled/run/t2946/Parsers.scala | 4 ---- test/disabled/run/t2946/ResponseCommon.scala | 14 -------------- test/disabled/run/t2946/Test.scala | 7 ------- 3 files changed, 25 deletions(-) delete mode 100755 test/disabled/run/t2946/Parsers.scala delete mode 100755 test/disabled/run/t2946/ResponseCommon.scala delete mode 100755 test/disabled/run/t2946/Test.scala (limited to 'test/disabled/run') diff --git a/test/disabled/run/t2946/Parsers.scala b/test/disabled/run/t2946/Parsers.scala deleted file mode 100755 index c0961034c4..0000000000 --- a/test/disabled/run/t2946/Parsers.scala +++ /dev/null @@ -1,4 +0,0 @@ -class Parser { - def parse(t: Any): Unit = { - } -} diff --git a/test/disabled/run/t2946/ResponseCommon.scala b/test/disabled/run/t2946/ResponseCommon.scala deleted file mode 100755 index fa9d8acccb..0000000000 --- a/test/disabled/run/t2946/ResponseCommon.scala +++ /dev/null @@ -1,14 +0,0 @@ -trait ResponseCommon extends Parser { - private[this] var paramsParser: Parser = null - def withParamsParser(parser: Parser) = {paramsParser = parser; this} - - class Foo { - println(paramsParser) - } - - override abstract def parse(t: Any): Unit = t match { - case ("params", value: List[_]) => value.foreach {paramsParser.parse(_)} - case _ => super.parse(t) - } -} - diff --git a/test/disabled/run/t2946/Test.scala b/test/disabled/run/t2946/Test.scala deleted file mode 100755 index e9d9896a0e..0000000000 --- a/test/disabled/run/t2946/Test.scala +++ /dev/null @@ -1,7 +0,0 @@ -class Test extends Parser with ResponseCommon - -object Test { - def main(args: Array[String]) { - new Test - } -} -- cgit v1.2.3