diff options
author | Tristan Gingold <tgingold@free.fr> | 2020-05-29 22:01:12 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2020-05-29 22:01:12 +0200 |
commit | fc1c5b5efd24da74de6bae210b74637599e6f94f (patch) | |
tree | dc17eff8b140baf99e1c1878559d89a4d3823dbc /testsuite/gna/bug071 | |
parent | 07cbb88880716cbe289b31ac05e83220eff746b5 (diff) | |
download | ghdl-fc1c5b5efd24da74de6bae210b74637599e6f94f.tar.gz ghdl-fc1c5b5efd24da74de6bae210b74637599e6f94f.tar.bz2 ghdl-fc1c5b5efd24da74de6bae210b74637599e6f94f.zip |
testsuite/gna/bug071: adjust previous patch.
Diffstat (limited to 'testsuite/gna/bug071')
-rw-r--r-- | testsuite/gna/bug071/atod.vhdl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/gna/bug071/atod.vhdl b/testsuite/gna/bug071/atod.vhdl index 2ff3bf90a..888055d67 100644 --- a/testsuite/gna/bug071/atod.vhdl +++ b/testsuite/gna/bug071/atod.vhdl @@ -39,14 +39,14 @@ begin -- the first digit. v := csts (2); assert - to_string (v, "%.13a") = "0x1.dcd0089c1314ep+218" - or to_string (v, "%.13a") = "0xe.e68044e098a7p+215" + to_string (v, "%.13a") = "0x1.dcd0089c1314ep+218" + or to_string (v, "%.13a") = "0xe.e68044e098a70p+215" severity failure; v := csts (3); assert - to_string (v, "%.13a") = "0x1.62644c61d41aap+885" - or to_string (v, "%.13a") = "0xb.1322630ea0d5p+882" + to_string (v, "%.13a") = "0x1.62644c61d41aap+885" + or to_string (v, "%.13a") = "0xb.1322630ea0d50p+882" severity failure; wait; end process; |