From d9e04cf647fef8039fc851130c9687f69197eae3 Mon Sep 17 00:00:00 2001 From: Etienne Kneuss <ekneuss@gmail.com> Date: Mon, 20 Apr 2015 15:49:49 +0200 Subject: [PATCH] Remove test that was not really passing solver checks --- .../verification/purescala/valid/MyMap.scala | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/test/resources/regression/verification/purescala/valid/MyMap.scala b/src/test/resources/regression/verification/purescala/valid/MyMap.scala index 4f656c596..b4652040a 100644 --- a/src/test/resources/regression/verification/purescala/valid/MyMap.scala +++ b/src/test/resources/regression/verification/purescala/valid/MyMap.scala @@ -9,10 +9,11 @@ object MyMap { m(2) } ensuring(_ == 3) - def map2(): Boolean = { - val m1 = Map[Int, Int]() - val m2 = Map.empty[Int, Int] - m1 == m2 - }.holds + // Empty maps are not well supported in CVC4, because of lack of quantifiers + //def map2(): Boolean = { + // val m1 = Map[Int, Int]() + // val m2 = Map.empty[Int, Int] + // m1 == m2 + //}.holds } -- GitLab