diff --git a/Makefile b/Makefile index 4a91b5702ff2500f4d04dda2c7a6901990dd2b83..7a520baa14219d60c722bbab5383127bdde4d0cd 100644 --- a/Makefile +++ b/Makefile @@ -170,12 +170,14 @@ force-reconfigure: TESTS=builtins callgraph cil constant_propagation float idct impact jcdb journal libc metrics misc occurrence pdg rte rte_manual scope slicing sparecode spec syntax test value -PLUGIN_TESTS= dive +PLUGIN_TESTS= dive loop_analysis tests: config.sed find tests $(addprefix src/plugins/,$(addsuffix /tests,$(PLUGIN_TESTS))) -name dune | grep -e "oracle.*/\|result.*/" | xargs --no-run-if-empty rm dune exec -- ptests/ptests.exe - dune exec -- ptests/ptests.exe $(addprefix src/plugins/,$(addsuffix /tests/,$(PLUGIN_TESTS))) + for plugin in $(PLUGIN_TESTS); do \ + dune exec -- ptests/ptests.exe src/plugins/$$plugin/tests; \ + done dune build $(addprefix @tests/,$(addsuffix /ptests,$(TESTS))) dune build $(addprefix @src/plugins/,$(addsuffix /tests/ptests,$(PLUGIN_TESTS))) diff --git a/src/plugins/loop_analysis/.gitignore b/src/plugins/loop_analysis/.gitignore index 0114e3d0f08985bcf97727dcde8f314ddb4410ae..3a98458e917cbf63ae42a311989dbe7be4a5d56c 100644 --- a/src/plugins/loop_analysis/.gitignore +++ b/src/plugins/loop_analysis/.gitignore @@ -1,4 +1,4 @@ /configure /Makefile -/tests/ptests_config /tests/*/result +/tests/**/dune diff --git a/src/plugins/loop_analysis/tests/loop_analysis/oracle/mixed_output.res.oracle b/src/plugins/loop_analysis/tests/loop_analysis/oracle/mixed_output.res.oracle index ca741cf1c77b63d45c09e22b860f7bd69193d898..154dac8900f88fea570fcf69e74573f64e2345e2 100644 --- a/src/plugins/loop_analysis/tests/loop_analysis/oracle/mixed_output.res.oracle +++ b/src/plugins/loop_analysis/tests/loop_analysis/oracle/mixed_output.res.oracle @@ -1,4 +1,4 @@ -[kernel] Parsing tests/loop_analysis/mixed_output.i (no preprocessing) +[kernel] Parsing mixed_output.i (no preprocessing) [loop] Functions with loops whose bounds we could not find: loop_inf loop_inf2 diff --git a/src/plugins/loop_analysis/tests/loop_analysis/oracle/ne.res.oracle b/src/plugins/loop_analysis/tests/loop_analysis/oracle/ne.res.oracle index 415f11cf56ca4a91dce199c123f9d3238d620a08..9f76acb8414869f3321fda0817b1e10b5a7d6b44 100644 --- a/src/plugins/loop_analysis/tests/loop_analysis/oracle/ne.res.oracle +++ b/src/plugins/loop_analysis/tests/loop_analysis/oracle/ne.res.oracle @@ -1,38 +1,38 @@ -[kernel] Parsing tests/loop_analysis/ne.i (no preprocessing) -[loop] tests/loop_analysis/ne.i:38: Warning: +[kernel] Parsing ne.i (no preprocessing) +[loop] ne.i:38: Warning: termination condition may not be reached (infinite loop?) loop amounts to: for (i = 0; i != 7; i += 2) -[loop] tests/loop_analysis/ne.i:46: Warning: +[loop] ne.i:46: Warning: termination condition may not be reached (infinite loop?) loop amounts to: for (i = 0; i != -9; i -= 2) -[loop] tests/loop_analysis/ne.i:54: Warning: +[loop] ne.i:54: Warning: termination condition may not be reached (infinite loop?) loop amounts to: for (i = 0; i != 18; i += 15) -[loop] tests/loop_analysis/ne.i:62: Warning: +[loop] ne.i:62: Warning: termination condition may not be reached (infinite loop?) loop amounts to: for (i = 0; i != -5; i -= 15) -[loop] tests/loop_analysis/ne.i:70: Warning: +[loop] ne.i:70: Warning: termination condition may not be reached (infinite loop?) loop amounts to: for (i = 0; i != 3; i += 2) -[loop] tests/loop_analysis/ne.i:78: Warning: +[loop] ne.i:78: Warning: termination condition may not be reached (infinite loop?) loop amounts to: for (i = 0; i != -11; i -= 2) -[loop] tests/loop_analysis/ne.i:86: Warning: +[loop] ne.i:86: Warning: termination condition may not be reached (infinite loop?) loop amounts to: for (i = 0; i != 25; i += 15) -[loop] tests/loop_analysis/ne.i:94: Warning: +[loop] ne.i:94: Warning: termination condition may not be reached (infinite loop?) loop amounts to: for (i = 0; i != -35; i -= 15) -[loop] tests/loop_analysis/ne.i:103: Warning: +[loop] ne.i:103: Warning: termination condition may not be reached (infinite loop?) loop amounts to: for (i = 0; i != 7; i -= 2) -[loop] tests/loop_analysis/ne.i:111: Warning: +[loop] ne.i:111: Warning: termination condition may not be reached (infinite loop?) loop amounts to: for (i = 0; i != -9; i += 2) -[loop] tests/loop_analysis/ne.i:119: Warning: +[loop] ne.i:119: Warning: termination condition may not be reached (infinite loop?) loop amounts to: for (i = 0; i != 18; i -= 15) -[loop] tests/loop_analysis/ne.i:127: Warning: +[loop] ne.i:127: Warning: termination condition may not be reached (infinite loop?) loop amounts to: for (i = 0; i != -5; i += 15) [loop] Functions with loops whose bounds we could not find: diff --git a/src/plugins/loop_analysis/tests/loop_analysis/oracle/non_natural_loop.res.oracle b/src/plugins/loop_analysis/tests/loop_analysis/oracle/non_natural_loop.res.oracle index 9da39d23e3eaf5f79bcd100124c346bc994d0a0e..67228ba2e4d1e078294f3f8675ea9364de487e18 100644 --- a/src/plugins/loop_analysis/tests/loop_analysis/oracle/non_natural_loop.res.oracle +++ b/src/plugins/loop_analysis/tests/loop_analysis/oracle/non_natural_loop.res.oracle @@ -1,6 +1,5 @@ -[kernel] Parsing tests/loop_analysis/non_natural_loop.i (no preprocessing) -[kernel] tests/loop_analysis/non_natural_loop.i:4: Warning: - Non-natural loop detected. +[kernel] Parsing non_natural_loop.i (no preprocessing) +[kernel] non_natural_loop.i:4: Warning: Non-natural loop detected. [loop] Warning: Could not analyze function duff; it contains a non-natural loop [loop] Add this to your command line: diff --git a/src/plugins/loop_analysis/tests/loop_analysis/oracle/non_natural_loop2.res.oracle b/src/plugins/loop_analysis/tests/loop_analysis/oracle/non_natural_loop2.res.oracle index fdef320cf5ec9cb6f77dc4cef68526896f75dbe1..4eb75dfefce28c4c5e86a2b07c2c1b5acecfbea3 100644 --- a/src/plugins/loop_analysis/tests/loop_analysis/oracle/non_natural_loop2.res.oracle +++ b/src/plugins/loop_analysis/tests/loop_analysis/oracle/non_natural_loop2.res.oracle @@ -1,6 +1,5 @@ -[kernel] Parsing tests/loop_analysis/non_natural_loop2.i (no preprocessing) -[kernel] tests/loop_analysis/non_natural_loop2.i:4: Warning: - Non-natural loop detected. +[kernel] Parsing non_natural_loop2.i (no preprocessing) +[kernel] non_natural_loop2.i:4: Warning: Non-natural loop detected. [loop] Warning: Could not analyze function main; it contains a non-natural loop [loop] Add this to your command line: diff --git a/src/plugins/loop_analysis/tests/loop_analysis/oracle/slevel_overflow.res.oracle b/src/plugins/loop_analysis/tests/loop_analysis/oracle/slevel_overflow.res.oracle index c12264a63be451697c62005dfeca7bdb2ff038b1..8a5da7dc9634c96be03a15627b8ffa08df7d4bef 100644 --- a/src/plugins/loop_analysis/tests/loop_analysis/oracle/slevel_overflow.res.oracle +++ b/src/plugins/loop_analysis/tests/loop_analysis/oracle/slevel_overflow.res.oracle @@ -1,4 +1,4 @@ -[kernel] Parsing tests/loop_analysis/slevel_overflow.c (with preprocessing) +[kernel] Parsing slevel_overflow.c (with preprocessing) [loop] Functions with loops whose estimated bounds were larger than -loop-max-slevel (we recommend setting their slevel to 0 to avoid wasting time): f2 (estimated bounds: 16777216000000000000000) diff --git a/src/plugins/loop_analysis/tests/loop_analysis/oracle/small_loop.0.res.oracle b/src/plugins/loop_analysis/tests/loop_analysis/oracle/small_loop.0.res.oracle index 5ab62cc0696013e087b2ec1df0813570a3fd5192..a8fbd64ebd50f89fb5d48d9b6da3b3ba293f9fe2 100644 --- a/src/plugins/loop_analysis/tests/loop_analysis/oracle/small_loop.0.res.oracle +++ b/src/plugins/loop_analysis/tests/loop_analysis/oracle/small_loop.0.res.oracle @@ -1,4 +1,4 @@ -[kernel] Parsing tests/loop_analysis/small_loop.i (no preprocessing) +[kernel] Parsing small_loop.i (no preprocessing) [loop] Add this to your command line: -val-slevel-merge-after-loop main \ -slevel-function main:20 diff --git a/src/plugins/loop_analysis/tests/loop_analysis/oracle/small_loop.1.res.oracle b/src/plugins/loop_analysis/tests/loop_analysis/oracle/small_loop.1.res.oracle index 5ab62cc0696013e087b2ec1df0813570a3fd5192..a8fbd64ebd50f89fb5d48d9b6da3b3ba293f9fe2 100644 --- a/src/plugins/loop_analysis/tests/loop_analysis/oracle/small_loop.1.res.oracle +++ b/src/plugins/loop_analysis/tests/loop_analysis/oracle/small_loop.1.res.oracle @@ -1,4 +1,4 @@ -[kernel] Parsing tests/loop_analysis/small_loop.i (no preprocessing) +[kernel] Parsing small_loop.i (no preprocessing) [loop] Add this to your command line: -val-slevel-merge-after-loop main \ -slevel-function main:20 diff --git a/src/plugins/loop_analysis/tests/loop_analysis/oracle/test.0.res.oracle b/src/plugins/loop_analysis/tests/loop_analysis/oracle/test.0.res.oracle index 923695413d0e4cc17011c4c1cf4e82020f3fd6fd..df2ce032de598f6aa4a5ed6ed65593bc37ff753c 100644 --- a/src/plugins/loop_analysis/tests/loop_analysis/oracle/test.0.res.oracle +++ b/src/plugins/loop_analysis/tests/loop_analysis/oracle/test.0.res.oracle @@ -1,4 +1,4 @@ -[kernel] Parsing tests/loop_analysis/test.i (no preprocessing) +[kernel] Parsing test.i (no preprocessing) [loop] Functions with loops whose bounds we could not find: g h6 diff --git a/src/plugins/loop_analysis/tests/loop_analysis/oracle/test.1.res.oracle b/src/plugins/loop_analysis/tests/loop_analysis/oracle/test.1.res.oracle index 887aa01c9d30e4b0d870405c4f53bb2706778cd2..e4f09ad4802a6428e764b0f4a4d9355f309a56ef 100644 --- a/src/plugins/loop_analysis/tests/loop_analysis/oracle/test.1.res.oracle +++ b/src/plugins/loop_analysis/tests/loop_analysis/oracle/test.1.res.oracle @@ -1,4 +1,4 @@ -[kernel] Parsing tests/loop_analysis/test.i (no preprocessing) +[kernel] Parsing test.i (no preprocessing) [loop] Functions with loops whose bounds we could not find: g h6 diff --git a/src/plugins/loop_analysis/tests/loop_analysis/oracle/with_value.res.oracle b/src/plugins/loop_analysis/tests/loop_analysis/oracle/with_value.res.oracle index 2532c0705debdae0c04bd3b145d657e2f7699ac2..c00e4f1915243e7c8f6babb4b501ffaad3cd166a 100644 --- a/src/plugins/loop_analysis/tests/loop_analysis/oracle/with_value.res.oracle +++ b/src/plugins/loop_analysis/tests/loop_analysis/oracle/with_value.res.oracle @@ -1,319 +1,319 @@ -[kernel] Parsing tests/loop_analysis/with_value.i (no preprocessing) +[kernel] Parsing with_value.i (no preprocessing) [eva] Analyzing a complete application starting at main [eva] Computing initial state [eva] Initial state computed [eva:initial-state] Values of globals at initialization nondet ∈ [--..--] [eva] computing for function f1 <- main. - Called from tests/loop_analysis/with_value.i:187. -[eva] tests/loop_analysis/with_value.i:6: starting to merge loop iterations + Called from with_value.i:187. +[eva] with_value.i:6: starting to merge loop iterations [eva] Recording results for f1 [eva] Done for function f1 [eva] computing for function f2 <- main. - Called from tests/loop_analysis/with_value.i:188. -[eva] tests/loop_analysis/with_value.i:10: starting to merge loop iterations + Called from with_value.i:188. +[eva] with_value.i:10: starting to merge loop iterations [eva] Recording results for f2 [eva] Done for function f2 [eva] computing for function f3 <- main. - Called from tests/loop_analysis/with_value.i:189. -[eva] tests/loop_analysis/with_value.i:14: starting to merge loop iterations + Called from with_value.i:189. +[eva] with_value.i:14: starting to merge loop iterations [eva] Recording results for f3 [eva] Done for function f3 [eva] computing for function f4 <- main. - Called from tests/loop_analysis/with_value.i:190. -[eva] tests/loop_analysis/with_value.i:18: starting to merge loop iterations + Called from with_value.i:190. +[eva] with_value.i:18: starting to merge loop iterations [eva] Recording results for f4 [eva] Done for function f4 [eva] computing for function f5 <- main. - Called from tests/loop_analysis/with_value.i:191. -[eva] tests/loop_analysis/with_value.i:22: starting to merge loop iterations + Called from with_value.i:191. +[eva] with_value.i:22: starting to merge loop iterations [eva] Recording results for f5 [eva] Done for function f5 [eva] computing for function f6 <- main. - Called from tests/loop_analysis/with_value.i:192. -[eva] tests/loop_analysis/with_value.i:26: starting to merge loop iterations + Called from with_value.i:192. +[eva] with_value.i:26: starting to merge loop iterations [eva] Recording results for f6 [eva] Done for function f6 [eva] computing for function f7 <- main. - Called from tests/loop_analysis/with_value.i:193. -[eva] tests/loop_analysis/with_value.i:30: starting to merge loop iterations + Called from with_value.i:193. +[eva] with_value.i:30: starting to merge loop iterations [eva] Recording results for f7 [eva] Done for function f7 [eva] computing for function f8 <- main. - Called from tests/loop_analysis/with_value.i:194. -[eva] tests/loop_analysis/with_value.i:34: starting to merge loop iterations + Called from with_value.i:194. +[eva] with_value.i:34: starting to merge loop iterations [eva] Recording results for f8 [eva] Done for function f8 [eva] computing for function g1 <- main. - Called from tests/loop_analysis/with_value.i:195. -[eva:alarm] tests/loop_analysis/with_value.i:38: Warning: + Called from with_value.i:195. +[eva:alarm] with_value.i:38: Warning: signed overflow. assert n + 2 ≤ 2147483647; -[eva] tests/loop_analysis/with_value.i:38: starting to merge loop iterations +[eva] with_value.i:38: starting to merge loop iterations [eva] Recording results for g1 [eva] Done for function g1 [eva] computing for function g2 <- main. - Called from tests/loop_analysis/with_value.i:196. -[eva:alarm] tests/loop_analysis/with_value.i:42: Warning: + Called from with_value.i:196. +[eva:alarm] with_value.i:42: Warning: signed overflow. assert n + 2 ≤ 2147483647; -[eva] tests/loop_analysis/with_value.i:42: starting to merge loop iterations -[eva:alarm] tests/loop_analysis/with_value.i:42: Warning: +[eva] with_value.i:42: starting to merge loop iterations +[eva:alarm] with_value.i:42: Warning: signed overflow. assert i + 1 ≤ 2147483647; [eva] Recording results for g2 [eva] Done for function g2 [eva] computing for function g3 <- main. - Called from tests/loop_analysis/with_value.i:197. -[eva:alarm] tests/loop_analysis/with_value.i:46: Warning: + Called from with_value.i:197. +[eva:alarm] with_value.i:46: Warning: signed overflow. assert n + 2 ≤ 2147483647; -[eva] tests/loop_analysis/with_value.i:46: starting to merge loop iterations -[eva:alarm] tests/loop_analysis/with_value.i:46: Warning: +[eva] with_value.i:46: starting to merge loop iterations +[eva:alarm] with_value.i:46: Warning: signed overflow. assert i + 1 ≤ 2147483647; [eva] Recording results for g3 [eva] Done for function g3 [eva] computing for function g4 <- main. - Called from tests/loop_analysis/with_value.i:198. -[eva:alarm] tests/loop_analysis/with_value.i:50: Warning: + Called from with_value.i:198. +[eva:alarm] with_value.i:50: Warning: signed overflow. assert n + 2 ≤ 2147483647; -[eva] tests/loop_analysis/with_value.i:50: starting to merge loop iterations +[eva] with_value.i:50: starting to merge loop iterations [eva] Recording results for g4 [eva] Done for function g4 [eva] computing for function g5 <- main. - Called from tests/loop_analysis/with_value.i:199. -[eva:alarm] tests/loop_analysis/with_value.i:54: Warning: + Called from with_value.i:199. +[eva:alarm] with_value.i:54: Warning: signed overflow. assert n + 2 ≤ 2147483647; [eva] Recording results for g5 [eva] Done for function g5 [eva] computing for function g6 <- main. - Called from tests/loop_analysis/with_value.i:200. -[eva:alarm] tests/loop_analysis/with_value.i:58: Warning: + Called from with_value.i:200. +[eva:alarm] with_value.i:58: Warning: signed overflow. assert n + 2 ≤ 2147483647; [eva] Recording results for g6 [eva] Done for function g6 [eva] computing for function g7 <- main. - Called from tests/loop_analysis/with_value.i:201. -[eva:alarm] tests/loop_analysis/with_value.i:62: Warning: + Called from with_value.i:201. +[eva:alarm] with_value.i:62: Warning: signed overflow. assert n + 2 ≤ 2147483647; [eva] Recording results for g7 [eva] Done for function g7 [eva] computing for function g8 <- main. - Called from tests/loop_analysis/with_value.i:202. -[eva:alarm] tests/loop_analysis/with_value.i:66: Warning: + Called from with_value.i:202. +[eva:alarm] with_value.i:66: Warning: signed overflow. assert n + 2 ≤ 2147483647; [eva] Recording results for g8 [eva] Done for function g8 [eva] computing for function h1 <- main. - Called from tests/loop_analysis/with_value.i:203. -[eva] tests/loop_analysis/with_value.i:70: starting to merge loop iterations + Called from with_value.i:203. +[eva] with_value.i:70: starting to merge loop iterations [eva] Recording results for h1 [eva] Done for function h1 [eva] computing for function h1 <- main. - Called from tests/loop_analysis/with_value.i:204. + Called from with_value.i:204. [eva] Recording results for h1 [eva] Done for function h1 [eva] computing for function h2 <- main. - Called from tests/loop_analysis/with_value.i:205. -[eva] tests/loop_analysis/with_value.i:74: starting to merge loop iterations + Called from with_value.i:205. +[eva] with_value.i:74: starting to merge loop iterations [eva] Recording results for h2 [eva] Done for function h2 [eva] computing for function h2 <- main. - Called from tests/loop_analysis/with_value.i:206. + Called from with_value.i:206. [eva] Recording results for h2 [eva] Done for function h2 [eva] computing for function h3 <- main. - Called from tests/loop_analysis/with_value.i:207. -[eva] tests/loop_analysis/with_value.i:78: starting to merge loop iterations + Called from with_value.i:207. +[eva] with_value.i:78: starting to merge loop iterations [eva] Recording results for h3 [eva] Done for function h3 [eva] computing for function h3 <- main. - Called from tests/loop_analysis/with_value.i:208. + Called from with_value.i:208. [eva] Recording results for h3 [eva] Done for function h3 [eva] computing for function h4 <- main. - Called from tests/loop_analysis/with_value.i:209. -[eva] tests/loop_analysis/with_value.i:82: starting to merge loop iterations + Called from with_value.i:209. +[eva] with_value.i:82: starting to merge loop iterations [eva] Recording results for h4 [eva] Done for function h4 [eva] computing for function h4 <- main. - Called from tests/loop_analysis/with_value.i:210. + Called from with_value.i:210. [eva] Recording results for h4 [eva] Done for function h4 [eva] computing for function h5 <- main. - Called from tests/loop_analysis/with_value.i:211. -[eva] tests/loop_analysis/with_value.i:86: starting to merge loop iterations + Called from with_value.i:211. +[eva] with_value.i:86: starting to merge loop iterations [eva] Recording results for h5 [eva] Done for function h5 [eva] computing for function h5 <- main. - Called from tests/loop_analysis/with_value.i:212. + Called from with_value.i:212. [eva] Recording results for h5 [eva] Done for function h5 [eva] computing for function h6 <- main. - Called from tests/loop_analysis/with_value.i:213. -[eva] tests/loop_analysis/with_value.i:90: starting to merge loop iterations + Called from with_value.i:213. +[eva] with_value.i:90: starting to merge loop iterations [eva] Recording results for h6 [eva] Done for function h6 [eva] computing for function h6 <- main. - Called from tests/loop_analysis/with_value.i:214. + Called from with_value.i:214. [eva] Recording results for h6 [eva] Done for function h6 [eva] computing for function h7 <- main. - Called from tests/loop_analysis/with_value.i:215. -[eva] tests/loop_analysis/with_value.i:94: starting to merge loop iterations + Called from with_value.i:215. +[eva] with_value.i:94: starting to merge loop iterations [eva] Recording results for h7 [eva] Done for function h7 [eva] computing for function h7 <- main. - Called from tests/loop_analysis/with_value.i:216. + Called from with_value.i:216. [eva] Recording results for h7 [eva] Done for function h7 [eva] computing for function h8 <- main. - Called from tests/loop_analysis/with_value.i:217. -[eva] tests/loop_analysis/with_value.i:98: starting to merge loop iterations + Called from with_value.i:217. +[eva] with_value.i:98: starting to merge loop iterations [eva] Recording results for h8 [eva] Done for function h8 [eva] computing for function h8 <- main. - Called from tests/loop_analysis/with_value.i:218. + Called from with_value.i:218. [eva] Recording results for h8 [eva] Done for function h8 [eva] computing for function i1 <- main. - Called from tests/loop_analysis/with_value.i:219. -[eva] tests/loop_analysis/with_value.i:102: starting to merge loop iterations + Called from with_value.i:219. +[eva] with_value.i:102: starting to merge loop iterations [eva] Recording results for i1 [eva] Done for function i1 [eva] computing for function i2 <- main. - Called from tests/loop_analysis/with_value.i:220. -[eva] tests/loop_analysis/with_value.i:106: starting to merge loop iterations + Called from with_value.i:220. +[eva] with_value.i:106: starting to merge loop iterations [eva] Recording results for i2 [eva] Done for function i2 [eva] computing for function i3 <- main. - Called from tests/loop_analysis/with_value.i:221. -[eva] tests/loop_analysis/with_value.i:110: starting to merge loop iterations + Called from with_value.i:221. +[eva] with_value.i:110: starting to merge loop iterations [eva] Recording results for i3 [eva] Done for function i3 [eva] computing for function i4 <- main. - Called from tests/loop_analysis/with_value.i:222. -[eva] tests/loop_analysis/with_value.i:114: starting to merge loop iterations + Called from with_value.i:222. +[eva] with_value.i:114: starting to merge loop iterations [eva] Recording results for i4 [eva] Done for function i4 [eva] computing for function j1 <- main. - Called from tests/loop_analysis/with_value.i:223. -[eva] tests/loop_analysis/with_value.i:118: starting to merge loop iterations + Called from with_value.i:223. +[eva] with_value.i:118: starting to merge loop iterations [eva] Recording results for j1 [eva] Done for function j1 [eva] computing for function j2 <- main. - Called from tests/loop_analysis/with_value.i:224. -[eva] tests/loop_analysis/with_value.i:122: starting to merge loop iterations + Called from with_value.i:224. +[eva] with_value.i:122: starting to merge loop iterations [eva] Recording results for j2 [eva] Done for function j2 [eva] computing for function j3 <- main. - Called from tests/loop_analysis/with_value.i:225. + Called from with_value.i:225. [eva] Recording results for j3 [eva] Done for function j3 [eva] computing for function j4 <- main. - Called from tests/loop_analysis/with_value.i:226. + Called from with_value.i:226. [eva] Recording results for j4 [eva] Done for function j4 [eva] computing for function j1 <- main. - Called from tests/loop_analysis/with_value.i:227. + Called from with_value.i:227. [eva] Recording results for j1 [eva] Done for function j1 [eva] computing for function j2 <- main. - Called from tests/loop_analysis/with_value.i:228. + Called from with_value.i:228. [eva] Recording results for j2 [eva] Done for function j2 [eva] computing for function j3 <- main. - Called from tests/loop_analysis/with_value.i:229. -[eva] tests/loop_analysis/with_value.i:126: starting to merge loop iterations + Called from with_value.i:229. +[eva] with_value.i:126: starting to merge loop iterations [eva] Recording results for j3 [eva] Done for function j3 [eva] computing for function j4 <- main. - Called from tests/loop_analysis/with_value.i:230. -[eva] tests/loop_analysis/with_value.i:130: starting to merge loop iterations + Called from with_value.i:230. +[eva] with_value.i:130: starting to merge loop iterations [eva] Recording results for j4 [eva] Done for function j4 [eva] computing for function f2_u_const <- main. - Called from tests/loop_analysis/with_value.i:232. -[eva] tests/loop_analysis/with_value.i:134: starting to merge loop iterations + Called from with_value.i:232. +[eva] with_value.i:134: starting to merge loop iterations [eva] Recording results for f2_u_const [eva] Done for function f2_u_const [eva] computing for function ne1 <- main. - Called from tests/loop_analysis/with_value.i:234. -[eva] tests/loop_analysis/with_value.i:138: starting to merge loop iterations -[eva:alarm] tests/loop_analysis/with_value.i:138: Warning: + Called from with_value.i:234. +[eva] with_value.i:138: starting to merge loop iterations +[eva:alarm] with_value.i:138: Warning: signed overflow. assert i + 4 ≤ 2147483647; [eva] Recording results for ne1 [eva] Done for function ne1 [eva] computing for function ne2 <- main. - Called from tests/loop_analysis/with_value.i:235. -[eva] tests/loop_analysis/with_value.i:142: starting to merge loop iterations -[eva:alarm] tests/loop_analysis/with_value.i:142: Warning: + Called from with_value.i:235. +[eva] with_value.i:142: starting to merge loop iterations +[eva:alarm] with_value.i:142: Warning: signed overflow. assert i + 4 ≤ 2147483647; [eva] Recording results for ne2 [eva] Done for function ne2 [eva] computing for function ne3 <- main. - Called from tests/loop_analysis/with_value.i:236. -[eva] tests/loop_analysis/with_value.i:146: starting to merge loop iterations -[eva:alarm] tests/loop_analysis/with_value.i:146: Warning: + Called from with_value.i:236. +[eva] with_value.i:146: starting to merge loop iterations +[eva:alarm] with_value.i:146: Warning: signed overflow. assert -2147483648 ≤ i - 1; [eva] Recording results for ne3 [eva] Done for function ne3 [eva] computing for function ne4 <- main. - Called from tests/loop_analysis/with_value.i:237. -[eva] tests/loop_analysis/with_value.i:150: starting to merge loop iterations -[eva:alarm] tests/loop_analysis/with_value.i:150: Warning: + Called from with_value.i:237. +[eva] with_value.i:150: starting to merge loop iterations +[eva:alarm] with_value.i:150: Warning: signed overflow. assert -2147483648 ≤ i - 1; [eva] Recording results for ne4 [eva] Done for function ne4 [eva] computing for function nev1 <- main. - Called from tests/loop_analysis/with_value.i:238. -[eva] tests/loop_analysis/with_value.i:154: starting to merge loop iterations -[eva:alarm] tests/loop_analysis/with_value.i:154: Warning: + Called from with_value.i:238. +[eva] with_value.i:154: starting to merge loop iterations +[eva:alarm] with_value.i:154: Warning: signed overflow. assert i + 4 ≤ 2147483647; [eva] Recording results for nev1 [eva] Done for function nev1 [eva] computing for function nev2 <- main. - Called from tests/loop_analysis/with_value.i:239. -[eva] tests/loop_analysis/with_value.i:158: starting to merge loop iterations -[eva:alarm] tests/loop_analysis/with_value.i:158: Warning: + Called from with_value.i:239. +[eva] with_value.i:158: starting to merge loop iterations +[eva:alarm] with_value.i:158: Warning: signed overflow. assert i + 4 ≤ 2147483647; [eva] Recording results for nev2 [eva] Done for function nev2 [eva] computing for function nev3 <- main. - Called from tests/loop_analysis/with_value.i:240. -[eva] tests/loop_analysis/with_value.i:162: starting to merge loop iterations -[eva:alarm] tests/loop_analysis/with_value.i:162: Warning: + Called from with_value.i:240. +[eva] with_value.i:162: starting to merge loop iterations +[eva:alarm] with_value.i:162: Warning: signed overflow. assert -2147483648 ≤ i - 1; [eva] Recording results for nev3 [eva] Done for function nev3 [eva] computing for function nev4 <- main. - Called from tests/loop_analysis/with_value.i:241. -[eva] tests/loop_analysis/with_value.i:166: starting to merge loop iterations -[eva:alarm] tests/loop_analysis/with_value.i:166: Warning: + Called from with_value.i:241. +[eva] with_value.i:166: starting to merge loop iterations +[eva:alarm] with_value.i:166: Warning: signed overflow. assert -2147483648 ≤ i - 1; [eva] Recording results for nev4 [eva] Done for function nev4 [eva] computing for function nev5 <- main. - Called from tests/loop_analysis/with_value.i:242. -[eva] tests/loop_analysis/with_value.i:170: starting to merge loop iterations -[eva:alarm] tests/loop_analysis/with_value.i:170: Warning: + Called from with_value.i:242. +[eva] with_value.i:170: starting to merge loop iterations +[eva:alarm] with_value.i:170: Warning: signed overflow. assert i + 4 ≤ 2147483647; [eva] Recording results for nev5 [eva] Done for function nev5 [eva] computing for function nev6 <- main. - Called from tests/loop_analysis/with_value.i:243. -[eva] tests/loop_analysis/with_value.i:174: starting to merge loop iterations -[eva:alarm] tests/loop_analysis/with_value.i:174: Warning: + Called from with_value.i:243. +[eva] with_value.i:174: starting to merge loop iterations +[eva:alarm] with_value.i:174: Warning: signed overflow. assert i + 4 ≤ 2147483647; [eva] Recording results for nev6 [eva] Done for function nev6 [eva] computing for function nev7 <- main. - Called from tests/loop_analysis/with_value.i:244. -[eva] tests/loop_analysis/with_value.i:178: starting to merge loop iterations -[eva:alarm] tests/loop_analysis/with_value.i:178: Warning: + Called from with_value.i:244. +[eva] with_value.i:178: starting to merge loop iterations +[eva:alarm] with_value.i:178: Warning: signed overflow. assert -2147483648 ≤ i - 1; [eva] Recording results for nev7 [eva] Done for function nev7 [eva] computing for function nev8 <- main. - Called from tests/loop_analysis/with_value.i:245. -[eva] tests/loop_analysis/with_value.i:182: starting to merge loop iterations -[eva:alarm] tests/loop_analysis/with_value.i:182: Warning: + Called from with_value.i:245. +[eva] with_value.i:182: starting to merge loop iterations +[eva:alarm] with_value.i:182: Warning: signed overflow. assert -2147483648 ≤ i - 1; [eva] Recording results for nev8 [eva] Done for function nev8 diff --git a/src/plugins/loop_analysis/tests/loop_analysis/with_value.i b/src/plugins/loop_analysis/tests/loop_analysis/with_value.i index b030fa5e58dbcbe8a8d388fcc49097265f53ec38..e617361189ac36f24e7d5a2bc34035f3444fd129 100644 --- a/src/plugins/loop_analysis/tests/loop_analysis/with_value.i +++ b/src/plugins/loop_analysis/tests/loop_analysis/with_value.i @@ -1,7 +1,7 @@ /*run.config -OPT: -no-autoload-plugins -load-module from,inout,loopanalysis,eva,scope -eva -eva-show-progress -then -loop +PLUGIN: from inout eva scope +OPT: -eva -eva-show-progress -then -loop */ - void f1(int n) { for (int i = 1; i < n+2; i++); // i IN [1..6] (6) } diff --git a/src/plugins/loop_analysis/tests/ptests_config b/src/plugins/loop_analysis/tests/ptests_config new file mode 100644 index 0000000000000000000000000000000000000000..95b27561f78e210e9c4125879ac5c4483b1a1f69 --- /dev/null +++ b/src/plugins/loop_analysis/tests/ptests_config @@ -0,0 +1 @@ +DEFAULT_SUITES= loop_analysis diff --git a/src/plugins/loop_analysis/tests/test_config b/src/plugins/loop_analysis/tests/test_config index 4d0023c27475cdf9b242f862679fa8375c351218..38f5a9cf0d342a8db00e3909b0f2c227e8a808e7 100644 --- a/src/plugins/loop_analysis/tests/test_config +++ b/src/plugins/loop_analysis/tests/test_config @@ -1 +1,2 @@ -OPT: -no-autoload-plugins -load-module loopanalysis -loop +PLUGIN: loop-analysis +OPT: -loop