summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIulian Dragos <jaguarul@gmail.com>2011-01-25 17:13:39 +0000
committerIulian Dragos <jaguarul@gmail.com>2011-01-25 17:13:39 +0000
commitdea65103bf06c0a91527692ac053d0d2cb9a9ddd (patch)
treec2356283a1485398c572110155229430a0ab46b7 /src
parentbe85330d5b3545ebfa12436c1030558f56d5fbd0 (diff)
downloadscala-dea65103bf06c0a91527692ac053d0d2cb9a9ddd.tar.gz
scala-dea65103bf06c0a91527692ac053d0d2cb9a9ddd.tar.bz2
scala-dea65103bf06c0a91527692ac053d0d2cb9a9ddd.zip
Skip getClass (signature changes between JDK 1....
Skip getClass (signature changes between JDK 1.5 and 1.6) and resolve encoding issue of unicode method name. Disabled part of a test that was not handled correctly by the presentation compiler (yet). Added correct encoding for the presentation compiler test. no review.
Diffstat (limited to 'src')
-rw-r--r--src/compiler/scala/tools/nsc/interactive/tests/InteractiveTest.scala4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/interactive/tests/InteractiveTest.scala b/src/compiler/scala/tools/nsc/interactive/tests/InteractiveTest.scala
index fbb5f7786a..1cda29fdba 100644
--- a/src/compiler/scala/tools/nsc/interactive/tests/InteractiveTest.scala
+++ b/src/compiler/scala/tools/nsc/interactive/tests/InteractiveTest.scala
@@ -124,7 +124,9 @@ abstract class InteractiveTest {
} { (pos, members) =>
println("\n" + "=" * 80)
println("[response] aksTypeCompletion at " + (pos.line, pos.column))
- println(members.sortBy(_.sym.name.toString).mkString("\n"))
+ // we skip getClass because it changed signature between 1.5 and 1.6, so there is no
+ // universal check file that we can provide for this to work
+ println(members.sortBy(_.sym.name.toString).filterNot(_.sym.name.toString == "getClass").mkString("\n"))
}
}