summaryrefslogtreecommitdiff
path: root/test/pending/run/t6956.scala
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@typesafe.com>2016-01-26 06:59:23 +0100
committerLukas Rytz <lukas.rytz@typesafe.com>2016-01-26 06:59:23 +0100
commitef77a5497a64f4fa870e830e9114bd00db269452 (patch)
tree4ce0d9afde8d2c44e0920d276661b0e57ca6d6bb /test/pending/run/t6956.scala
parent90ee1b871236402f8543bf424a4f38d909598b3a (diff)
parent983894f24b6c79934af757173d9e44faecd34069 (diff)
downloadscala-ef77a5497a64f4fa870e830e9114bd00db269452.tar.gz
scala-ef77a5497a64f4fa870e830e9114bd00db269452.tar.bz2
scala-ef77a5497a64f4fa870e830e9114bd00db269452.zip
Merge pull request #4916 from lrytz/restoreASMTests
Restore backend tests that were removed together with GenASM
Diffstat (limited to 'test/pending/run/t6956.scala')
-rw-r--r--test/pending/run/t6956.scala31
1 files changed, 0 insertions, 31 deletions
diff --git a/test/pending/run/t6956.scala b/test/pending/run/t6956.scala
deleted file mode 100644
index 57d721807d..0000000000
--- a/test/pending/run/t6956.scala
+++ /dev/null
@@ -1,31 +0,0 @@
-import scala.tools.partest.IcodeComparison
-
-class Switches {
- private[this] final val ONE = 1
-
- def switchBad(i: Byte): Int = i match {
- case ONE => 1
- case 2 => 2
- case 3 => 3
- case _ => 0
- }
-
- def switchOkay(i: Byte): Int = i match {
- case 1 => 1
- case 2 => 2
- case 3 => 3
- case _ => 0
- }
-}
-
-object Test extends IcodeComparison {
- // ensure we get two switches out of this -- ignore the rest of the output for robustness
- // exclude the constant we emit for the "SWITCH ..." string below (we get the icode for all the code you see in this file)
- override def show() = {
- val expected = 2
- val actual = (collectIcode() filter {
- x => x.indexOf("SWITCH ...") >= 0 && x.indexOf("CONSTANT(") == -1
- }).size
- assert(actual == expected, s"switches expected: $expected, actual: $actual")
- }
-}