From 7b560213cb3c41dfd9e78c13070ea6123514b23b Mon Sep 17 00:00:00 2001 From: Jason Zaugg Date: Thu, 17 Oct 2013 09:47:13 +0200 Subject: Disable tests for SI-7020 These are still impudently being non-deterministic. I've reopened the ticket so we can take another swing at it. A well targetted s/HashMap/LinkedHashMap/ will almost certainly be the salve. fail - neg/t7020.scala [output differs]% scalac t7020.scala t7020.scala:3: warning: match may not be exhaustive. It would fail on the following inputs: List((x: Int forSome x not in (1, 2, 4, 5, 6, 7))), List((x: Int forSome x not in (1, 2, 4, 5, 6, 7)), _), List(1, _), List(2, _), List(4, _), List(5, _), List(6, _), List(7, _), List(??, _), List(_, _) List(5) match { ^ t7020.scala:10: warning: match may not be exhaustive. It would fail on the following inputs: List((x: Int forSome x not in (1, 2, 4, 5, 6, 7))), List((x: Int forSome x not in (1, 2, 4, 5, 6, 7)), _), List(1, _), List(2, _), List(4, _), List(5, _), List(6, _), List(7, _), List(??, _), List(_, _) List(5) match { ^ --- test/files/neg/t7020.scala | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 test/files/neg/t7020.scala (limited to 'test/files/neg/t7020.scala') diff --git a/test/files/neg/t7020.scala b/test/files/neg/t7020.scala deleted file mode 100644 index cc5421bab1..0000000000 --- a/test/files/neg/t7020.scala +++ /dev/null @@ -1,30 +0,0 @@ -object Test { - // warning was non-deterministic - List(5) match { - case 1 :: Nil | 2 :: Nil => - case (x@(4 | 5 | 6)) :: Nil => - case 7 :: Nil => - case Nil => - } - - List(5) match { - case 1 :: Nil | 2 :: Nil => - case (x@(4 | 5 | 6)) :: Nil => - case 7 :: Nil => - case Nil => - } - - List(5) match { - case 1 :: Nil | 2 :: Nil => - case (x@(4 | 5 | 6)) :: Nil => - case 7 :: Nil => - case Nil => - } - - List(5) match { - case 1 :: Nil | 2 :: Nil => - case (x@(4 | 5 | 6)) :: Nil => - case 7 :: Nil => - case Nil => - } -} -- cgit v1.2.3