|
From: <sv...@va...> - 2013-06-02 03:22:45
|
petarj 2013-06-02 04:22:28 +0100 (Sun, 02 Jun 2013)
New Revision: 13415
Log:
update cond_ld_st test and expected outputs
Line numbers are off by one in some outputs since it differs on GCC version
how it will map source code to line number for the ternary operator written
in multiple lines.
This is small fix that replaces one occurrence of ternary operator with
if-then-else. The excepted outputs have been changed accordingly.
This fixes the test memcheck/tests/cond_ld_st for different platforms with
different GCC versions.
Tested on x86, i386, ARM, MIPS32, and MIPS64.
Modified files:
trunk/memcheck/tests/cond_ld.stderr.exp-32bit-non-arm
trunk/memcheck/tests/cond_ld.stderr.exp-64bit-non-arm
trunk/memcheck/tests/cond_ld.stderr.exp-arm
trunk/memcheck/tests/cond_ld_st.c
trunk/memcheck/tests/cond_st.stderr.exp-32bit-non-arm
trunk/memcheck/tests/cond_st.stderr.exp-64bit-non-arm
trunk/memcheck/tests/cond_st.stderr.exp-arm
Modified: trunk/memcheck/tests/cond_ld_st.c (+6 -3)
===================================================================
--- trunk/memcheck/tests/cond_ld_st.c 2013-06-02 03:59:07 +01:00 (rev 13414)
+++ trunk/memcheck/tests/cond_ld_st.c 2013-06-02 04:22:28 +01:00 (rev 13415)
@@ -314,9 +314,12 @@
+ (lc->addrErr == 'Y' ? 1 : 0);
UInt n_errs_act = VALGRIND_COUNT_ERRORS;
- UInt res_act
- = isLoad ? do_conditional_load32(i_Addr, i_Alt, i_Cond)
- : do_conditional_store32(i_Addr, i_Alt, i_Cond);
+ UInt res_act;
+ if (isLoad) {
+ res_act = do_conditional_load32(i_Addr, i_Alt, i_Cond);
+ } else {
+ res_act = do_conditional_store32(i_Addr, i_Alt, i_Cond);
+ }
n_errs_act = VALGRIND_COUNT_ERRORS - n_errs_act;
if (n_errs_act == n_errs_exp) {
Modified: trunk/memcheck/tests/cond_ld.stderr.exp-arm (+160 -160)
===================================================================
--- trunk/memcheck/tests/cond_ld.stderr.exp-arm 2013-06-02 03:59:07 +01:00 (rev 13414)
+++ trunk/memcheck/tests/cond_ld.stderr.exp-arm 2013-06-02 04:22:28 +01:00 (rev 13415)
@@ -24,14 +24,14 @@
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:362)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:365)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:362)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:365)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -41,14 +41,14 @@
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:364)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:367)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:364)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:367)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -58,14 +58,14 @@
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:366)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:369)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:366)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:369)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -75,14 +75,14 @@
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:368)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:371)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:368)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:371)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -92,8 +92,8 @@
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:370)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:373)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -103,8 +103,8 @@
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:372)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:375)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -114,8 +114,8 @@
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:374)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:377)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -125,8 +125,8 @@
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:376)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:379)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -136,20 +136,20 @@
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:378)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:381)
+ by 0x........: main (cond_ld_st.c:639)
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:378)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:381)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:378)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:381)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 2 errors
PASS: correct result
@@ -159,20 +159,20 @@
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:380)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:383)
+ by 0x........: main (cond_ld_st.c:639)
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:380)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:383)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:380)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:383)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 2 errors
PASS: correct result
@@ -182,20 +182,20 @@
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:382)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:385)
+ by 0x........: main (cond_ld_st.c:639)
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:382)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:385)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:382)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:385)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 2 errors
PASS: correct result
@@ -205,20 +205,20 @@
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:384)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:387)
+ by 0x........: main (cond_ld_st.c:639)
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:384)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:387)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:384)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:387)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 2 errors
PASS: correct result
@@ -308,8 +308,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:418)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:421)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -319,8 +319,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:420)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:423)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -330,8 +330,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:422)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:425)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -341,8 +341,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:424)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:427)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -352,20 +352,20 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:426)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:429)
+ by 0x........: main (cond_ld_st.c:639)
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:426)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:429)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:426)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:429)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 2 errors
PASS: correct result
@@ -375,20 +375,20 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:428)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:431)
+ by 0x........: main (cond_ld_st.c:639)
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:428)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:431)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:428)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:431)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 2 errors
PASS: correct result
@@ -398,20 +398,20 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:430)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:433)
+ by 0x........: main (cond_ld_st.c:639)
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:430)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:433)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:430)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:433)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 2 errors
PASS: correct result
@@ -421,20 +421,20 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:432)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:435)
+ by 0x........: main (cond_ld_st.c:639)
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:432)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:435)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:432)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:435)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 2 errors
PASS: correct result
@@ -444,14 +444,14 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:434)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:437)
+ by 0x........: main (cond_ld_st.c:639)
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:434)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:437)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 2 errors
PASS: correct result
@@ -461,14 +461,14 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:436)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:439)
+ by 0x........: main (cond_ld_st.c:639)
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:436)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:439)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 2 errors
PASS: correct result
@@ -478,14 +478,14 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:438)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:441)
+ by 0x........: main (cond_ld_st.c:639)
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:438)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:441)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 2 errors
PASS: correct result
@@ -495,14 +495,14 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:440)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:443)
+ by 0x........: main (cond_ld_st.c:639)
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:440)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:443)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 2 errors
PASS: correct result
@@ -512,26 +512,26 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:442)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:445)
+ by 0x........: main (cond_ld_st.c:639)
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:442)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:445)
+ by 0x........: main (cond_ld_st.c:639)
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:442)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:445)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:442)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:445)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 3 errors
PASS: correct result
@@ -541,26 +541,26 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:444)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:447)
+ by 0x........: main (cond_ld_st.c:639)
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:444)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:447)
+ by 0x........: main (cond_ld_st.c:639)
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:444)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:447)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:444)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:447)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 3 errors
PASS: correct result
@@ -570,26 +570,26 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:446)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:449)
+ by 0x........: main (cond_ld_st.c:639)
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:446)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:449)
+ by 0x........: main (cond_ld_st.c:639)
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:446)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:449)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:446)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:449)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 3 errors
PASS: correct result
@@ -599,26 +599,26 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:448)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:451)
+ by 0x........: main (cond_ld_st.c:639)
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:448)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:451)
+ by 0x........: main (cond_ld_st.c:639)
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:448)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:451)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:448)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:451)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 3 errors
PASS: correct result
@@ -628,8 +628,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:450)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:453)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -639,8 +639,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:452)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:455)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -650,8 +650,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:454)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:457)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -661,8 +661,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:456)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:459)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -672,8 +672,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:458)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:461)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -683,8 +683,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:460)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:463)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -694,8 +694,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:462)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:465)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -705,8 +705,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:464)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:467)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -716,8 +716,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:466)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:469)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -727,8 +727,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:468)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:471)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -738,8 +738,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:470)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:473)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -749,8 +749,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:472)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:475)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -760,8 +760,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:474)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:477)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -771,8 +771,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:476)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:479)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -782,8 +782,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:478)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:481)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -793,8 +793,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:49)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:480)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:483)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
Modified: trunk/memcheck/tests/cond_ld.stderr.exp-32bit-non-arm (+160 -160)
===================================================================
--- trunk/memcheck/tests/cond_ld.stderr.exp-32bit-non-arm 2013-06-02 03:59:07 +01:00 (rev 13414)
+++ trunk/memcheck/tests/cond_ld.stderr.exp-32bit-non-arm 2013-06-02 04:22:28 +01:00 (rev 13415)
@@ -24,14 +24,14 @@
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:362)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:365)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:362)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:365)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -41,14 +41,14 @@
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:364)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:367)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:364)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:367)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -58,14 +58,14 @@
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:366)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:369)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:366)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:369)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -75,14 +75,14 @@
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:368)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:371)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:368)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:371)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -92,8 +92,8 @@
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:370)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:373)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -103,8 +103,8 @@
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:372)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:375)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -114,8 +114,8 @@
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:374)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:377)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -125,8 +125,8 @@
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:376)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:379)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -136,20 +136,20 @@
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:378)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:381)
+ by 0x........: main (cond_ld_st.c:639)
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:378)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:381)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:378)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:381)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 2 errors
PASS: correct result
@@ -159,20 +159,20 @@
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:380)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:383)
+ by 0x........: main (cond_ld_st.c:639)
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:380)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:383)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:380)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:383)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 2 errors
PASS: correct result
@@ -182,20 +182,20 @@
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:382)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:385)
+ by 0x........: main (cond_ld_st.c:639)
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:382)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:385)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:382)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:385)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 2 errors
PASS: correct result
@@ -205,20 +205,20 @@
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:384)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:387)
+ by 0x........: main (cond_ld_st.c:639)
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:384)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:387)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:384)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:387)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 2 errors
PASS: correct result
@@ -308,8 +308,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:418)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:421)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -319,8 +319,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:420)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:423)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -330,8 +330,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:422)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:425)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -341,8 +341,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:424)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:427)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -352,20 +352,20 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:426)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:429)
+ by 0x........: main (cond_ld_st.c:639)
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:426)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:429)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:426)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:429)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 2 errors
PASS: correct result
@@ -375,20 +375,20 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:428)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:431)
+ by 0x........: main (cond_ld_st.c:639)
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:428)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:431)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:428)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:431)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 2 errors
PASS: correct result
@@ -398,20 +398,20 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:430)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:433)
+ by 0x........: main (cond_ld_st.c:639)
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:430)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:433)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:430)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:433)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 2 errors
PASS: correct result
@@ -421,20 +421,20 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:432)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:435)
+ by 0x........: main (cond_ld_st.c:639)
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:432)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:435)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:432)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:435)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 2 errors
PASS: correct result
@@ -444,14 +444,14 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:434)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:437)
+ by 0x........: main (cond_ld_st.c:639)
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:434)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:437)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 2 errors
PASS: correct result
@@ -461,14 +461,14 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:436)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:439)
+ by 0x........: main (cond_ld_st.c:639)
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:436)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:439)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 2 errors
PASS: correct result
@@ -478,14 +478,14 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:438)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:441)
+ by 0x........: main (cond_ld_st.c:639)
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:438)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:441)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 2 errors
PASS: correct result
@@ -495,14 +495,14 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:440)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:443)
+ by 0x........: main (cond_ld_st.c:639)
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:440)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:443)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 2 errors
PASS: correct result
@@ -512,26 +512,26 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:442)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:445)
+ by 0x........: main (cond_ld_st.c:639)
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:442)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:445)
+ by 0x........: main (cond_ld_st.c:639)
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:442)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:445)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:442)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:445)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 3 errors
PASS: correct result
@@ -541,26 +541,26 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:444)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:447)
+ by 0x........: main (cond_ld_st.c:639)
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:444)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:447)
+ by 0x........: main (cond_ld_st.c:639)
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:444)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:447)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:444)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:447)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 3 errors
PASS: correct result
@@ -570,26 +570,26 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:446)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:449)
+ by 0x........: main (cond_ld_st.c:639)
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:446)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:449)
+ by 0x........: main (cond_ld_st.c:639)
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:446)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:449)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:446)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:449)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 3 errors
PASS: correct result
@@ -599,26 +599,26 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:448)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:451)
+ by 0x........: main (cond_ld_st.c:639)
Use of uninitialised value of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:448)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:451)
+ by 0x........: main (cond_ld_st.c:639)
Invalid read of size 4
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:448)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:451)
+ by 0x........: main (cond_ld_st.c:639)
Address 0x........ is 0 bytes inside a block of size 4 free'd
at 0x........: free (vg_replace_malloc.c:...)
by 0x........: setup_test_data (cond_ld_st.c:257)
by 0x........: do_test_case (cond_ld_st.c:284)
- by 0x........: do_test_case_steer (cond_ld_st.c:448)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:451)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 3 errors
PASS: correct result
@@ -628,8 +628,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:450)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:453)
+ by 0x........: main (cond_ld_st.c:639)
PASS: 1 errors
PASS: correct result
@@ -639,8 +639,8 @@
Conditional jump or move depends on uninitialised value(s)
at 0x........: do_conditional_load32 (cond_ld_st.c:61)
by 0x........: do_test_case (cond_ld_st.c:319)
- by 0x........: do_test_case_steer (cond_ld_st.c:452)
- by 0x........: main (cond_ld_st.c:636)
+ by 0x........: do_test_case_steer (cond_ld_st.c:455)
+ by 0x...........
[truncated message content] |