From 01ac4073c80f83a4e3f644dc59893b1ed1c50402 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Mon, 21 Dec 2020 15:29:05 +0100 Subject: [PATCH] TestExprEngine: Fix for ubuntu 18.04. Replace '(/ 123.0 10.0)' with '12.3' --- test/testexprengine.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test/testexprengine.cpp b/test/testexprengine.cpp index d86006956..e5c7b09e4 100644 --- a/test/testexprengine.cpp +++ b/test/testexprengine.cpp @@ -153,6 +153,7 @@ private: replace(line, "(fp.gt ", "(> "); replace(line, "(fp.lt ", "(< "); replace(line, "(fp #b0 #b10000000010 #x899999999999a)", "12.3"); + replace(line, "(/ 123.0 10.0)", "12.3"); int par = 0; for (char pos : line) { if (pos == '(')