|
From: Nicholas N. <nj...@ca...> - 2004-11-16 18:13:16
|
CVS commit by nethercote:
fix incorrect counts
M +3 -3 scalar.c 1.50
M +2 -2 scalar.stderr.exp 1.42
--- valgrind/memcheck/tests/scalar.c #1.49:1.50
@@ -136,6 +136,6 @@ int main(void)
// __NR_ptrace 26
- // XXX: memory pointed to be arg3 is never checked...
- GO(__NR_ptrace, "4s 2m");
+ // XXX: memory pointed to be arg3 goes unchecked... otherwise would be 2m
+ GO(__NR_ptrace, "4s 1m");
SY(__NR_ptrace, x0+PTRACE_GETREGS, x0, x0, x0); FAIL;
@@ -1192,5 +1192,5 @@ int main(void)
// __NR_mq_open 277
- GO(__NR_mq_open, "4s 2m");
+ GO(__NR_mq_open, "4s 3m");
SY(__NR_mq_open, x0, x0+O_CREAT, x0, x0+1); FAIL;
--- valgrind/memcheck/tests/scalar.stderr.exp #1.41:1.42
@@ -378,5 +378,5 @@
-----------------------------------------------------
-----------------------------------------------------
- 26: __NR_ptrace 4s 2m
+ 26: __NR_ptrace 4s 1m
-----------------------------------------------------
@@ -4365,5 +4365,5 @@
-----------------------------------------------------
-----------------------------------------------------
-277: __NR_mq_open 4s 2m
+277: __NR_mq_open 4s 3m
-----------------------------------------------------
|