Skip to content
Snippets Groups Projects
Commit c481e1f5 authored by David Bühler's avatar David Bühler
Browse files

[Dive] Updates test oracles.

parent 1cbcb2e7
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
[eva] Computing initial state [eva] Computing initial state
[eva] Initial state computed [eva] Initial state computed
[eva:alarm] tests/dive/callstack_strategy.i:11: Warning: [eva:alarm] tests/dive/callstack_strategy.i:11: Warning:
non-finite float value. assert \is_finite((float)(y + z)); non-finite float value. assert \is_finite(\add_float(y, z));
[eva] done for function main [eva] done for function main
[eva:summary] ====== ANALYSIS SUMMARY ====== [eva:summary] ====== ANALYSIS SUMMARY ======
---------------------------------------------------------------------------- ----------------------------------------------------------------------------
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
[eva] Computing initial state [eva] Computing initial state
[eva] Initial state computed [eva] Initial state computed
[eva:alarm] tests/dive/global.i:11: Warning: [eva:alarm] tests/dive/global.i:11: Warning:
non-finite float value. assert \is_finite((float)(g + x)); non-finite float value. assert \is_finite(\add_float(g, x));
[eva] done for function main [eva] done for function main
[eva:summary] ====== ANALYSIS SUMMARY ====== [eva:summary] ====== ANALYSIS SUMMARY ======
---------------------------------------------------------------------------- ----------------------------------------------------------------------------
......
...@@ -3,9 +3,9 @@ ...@@ -3,9 +3,9 @@
[eva] Computing initial state [eva] Computing initial state
[eva] Initial state computed [eva] Initial state computed
[eva:alarm] tests/dive/per_callstack.i:15: Warning: [eva:alarm] tests/dive/per_callstack.i:15: Warning:
non-finite float value. assert \is_finite((float)(x + y)); non-finite float value. assert \is_finite(\add_float(x, y));
[eva:alarm] tests/dive/per_callstack.i:15: Warning: [eva:alarm] tests/dive/per_callstack.i:15: Warning:
non-finite float value. assert \is_finite((float)((float)(x + y) + z)); non-finite float value. assert \is_finite(\add_float(\add_float(x, y), z));
[eva] done for function main [eva] done for function main
[eva:summary] ====== ANALYSIS SUMMARY ====== [eva:summary] ====== ANALYSIS SUMMARY ======
---------------------------------------------------------------------------- ----------------------------------------------------------------------------
......
...@@ -4,11 +4,11 @@ ...@@ -4,11 +4,11 @@
[eva] Initial state computed [eva] Initial state computed
[eva:alarm] tests/dive/unfocused_callers.i:16: Warning: [eva:alarm] tests/dive/unfocused_callers.i:16: Warning:
non-finite float value. non-finite float value.
assert \is_finite((float)(tmp + tmp_0)); assert \is_finite(\add_float(tmp, tmp_0));
(tmp from f1(x), tmp_0 from f2(x)) (tmp from f1(x), tmp_0 from f2(x))
[eva:alarm] tests/dive/unfocused_callers.i:16: Warning: [eva:alarm] tests/dive/unfocused_callers.i:16: Warning:
non-finite float value. non-finite float value.
assert \is_finite((float)((float)(tmp + tmp_0) + tmp_1)); assert \is_finite(\add_float(\add_float(tmp, tmp_0), tmp_1));
(tmp from f1(x), tmp_0 from f2(x), tmp_1 from f3(x)) (tmp from f1(x), tmp_0 from f2(x), tmp_1 from f3(x))
[eva] done for function main [eva] done for function main
[eva:summary] ====== ANALYSIS SUMMARY ====== [eva:summary] ====== ANALYSIS SUMMARY ======
......
...@@ -23,10 +23,10 @@ digraph G { ...@@ -23,10 +23,10 @@ digraph G {
style="filled", ]; style="filled", ];
cp26 [label=<y>, shape=box, fillcolor="#FFBBBB", color="#FF0000", cp26 [label=<y>, shape=box, fillcolor="#FFBBBB", color="#FF0000",
style="filled", ]; style="filled", ];
cp30 [label=<is_nan_or_infinite: \is_finite((float)((double)((double)y * 2.0)))>, cp30 [label=<is_nan_or_infinite: \is_finite((float)\mul_double((double)y, (double)2.0))>,
fillcolor="#FF0000", color="#FF0000", shape=doubleoctagon, fillcolor="#FF0000", color="#FF0000", shape=doubleoctagon,
style="filled,bold", ]; style="filled,bold", ];
cp32 [label=<is_nan_or_infinite: \is_finite((float)(y + w))>, cp32 [label=<is_nan_or_infinite: \is_finite(\add_float(y, w))>,
fillcolor="#FF0000", color="#FF0000", shape=doubleoctagon, fillcolor="#FF0000", color="#FF0000", shape=doubleoctagon,
style="filled,bold", ]; style="filled,bold", ];
......
...@@ -5,9 +5,9 @@ ...@@ -5,9 +5,9 @@
[eva] tests/dive/various.i:10: starting to merge loop iterations [eva] tests/dive/various.i:10: starting to merge loop iterations
[eva:alarm] tests/dive/various.i:13: Warning: [eva:alarm] tests/dive/various.i:13: Warning:
non-finite float value. non-finite float value.
assert \is_finite((float)((double)((double)y * 2.0))); assert \is_finite((float)\mul_double((double)y, (double)2.0));
[eva:alarm] tests/dive/various.i:27: Warning: [eva:alarm] tests/dive/various.i:27: Warning:
non-finite float value. assert \is_finite((float)(y + w)); non-finite float value. assert \is_finite(\add_float(y, w));
[eva] done for function main [eva] done for function main
[eva:summary] ====== ANALYSIS SUMMARY ====== [eva:summary] ====== ANALYSIS SUMMARY ======
---------------------------------------------------------------------------- ----------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment