diff options
author | bart <bart@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2008-09-07 16:55:15 +0000 |
---|---|---|
committer | bart <bart@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2008-09-07 16:55:15 +0000 |
commit | 8144ff4f1fd1a04f9328bd8f2a90e0907dbf9da0 (patch) | |
tree | 0b69c8f71171534547d7301676b2272ff2a0f55d /memcheck | |
parent | 744f9ea3d597b563be728dc17c0ad229de069547 (diff) |
Disabled printing of file descriptor value in order to make the test results more reproducible.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8575 a5019735-40e9-0310-863c-91ae7b9d1cf9
Diffstat (limited to 'memcheck')
-rw-r--r-- | memcheck/tests/linux-timerfd-syscall.c | 2 | ||||
-rw-r--r-- | memcheck/tests/linux-timerfd-syscall.stdout.exp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/memcheck/tests/linux-timerfd-syscall.c b/memcheck/tests/linux-timerfd-syscall.c index 5c0dd218..e1a891b8 100644 --- a/memcheck/tests/linux-timerfd-syscall.c +++ b/memcheck/tests/linux-timerfd-syscall.c @@ -267,7 +267,9 @@ int main(int ac, char **av) perror("timerfd_settime"); return 1; } +#if 0 fprintf(stdout, "timerfd = %d\n", tfd); +#endif fprintf(stdout, "wating timer (flush the single tick) ...\n"); ticks = waittmr(tfd, -1); diff --git a/memcheck/tests/linux-timerfd-syscall.stdout.exp b/memcheck/tests/linux-timerfd-syscall.stdout.exp index bd4a1905..651d6f37 100644 --- a/memcheck/tests/linux-timerfd-syscall.stdout.exp +++ b/memcheck/tests/linux-timerfd-syscall.stdout.exp @@ -18,7 +18,6 @@ sleeping 1 second ... wating timer ... got timer ticks (20) after 2.0 s O_NONBLOCK test ... -timerfd = 5 wating timer (flush the single tick) ... got timer ticks (1) after 0.1 s success @@ -42,7 +41,6 @@ sleeping 1 second ... wating timer ... got timer ticks (20) after 2.0 s O_NONBLOCK test ... -timerfd = 5 wating timer (flush the single tick) ... got timer ticks (1) after 0.1 s success |