diff --git a/regression/cbmc/float-trace/test.c b/regression/cbmc/float-trace/test.c deleted file mode 100644 index 1f09d8b3ab4..00000000000 --- a/regression/cbmc/float-trace/test.c +++ /dev/null @@ -1,28 +0,0 @@ -#include -#include -#include - -int main() -{ - float fzero = 0.0f; - float fone = 1.0f; - float fcomplex = 0x1p+37f; - float finf = INFINITY; - float fnan = NAN; - - double dzero = 0.0; - double done = 1.0; - double dinf = INFINITY; - double dnan = NAN; - double dcomplex = -5.56268e-309; - - assert(false); - - return 0; -} - -void test(float value) -{ - assert(value == 1.0f); - assert(value == 0.0f); -} diff --git a/regression/cbmc/float-trace/test.desc b/regression/cbmc/float-trace/test.desc deleted file mode 100644 index acfd2834cca..00000000000 --- a/regression/cbmc/float-trace/test.desc +++ /dev/null @@ -1,32 +0,0 @@ -CORE -test.c ---trace --xml-ui -^EXIT=10$ -^SIGNAL=0$ -VERIFICATION FAILED -fzero -0.0f -fone -1.0f -fcomplex -1\.374390e\+11f -finf -\+INFINITY -fnan -\+NAN -\+NAN -dzero -0.0 -done -1.0 -dcomplex --5\.562680e-309 -finf -\+INFINITY -fnan -\+NAN -\+NAN --- --- -Checks that the binary value is printed for floating point types -point types