aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests
diff options
context:
space:
mode:
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>2016-08-09 12:11:26 +0200
committerShuah Khan <shuahkh@osg.samsung.com>2016-09-20 09:00:28 -0600
commitc3cb83560daae4c619d1034eb98c1a40ee896387 (patch)
tree8f8d89603ffbd343793fc52a21af889c43541a68 /tools/testing/selftests
parentselftests/zram: replace ZRAM_LZ4_COMPRESS (diff)
downloadlinux-dev-c3cb83560daae4c619d1034eb98c1a40ee896387.tar.xz
linux-dev-c3cb83560daae4c619d1034eb98c1a40ee896387.zip
selftests/timers: Add missing error code assignment before test
In order to work, the 'err' return value has to be updated otherwise the test can never be true. Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Acked-by: John Stultz <john.stultz@linaro.org> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Diffstat (limited to '')
-rw-r--r--tools/testing/selftests/timers/posix_timers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/testing/selftests/timers/posix_timers.c b/tools/testing/selftests/timers/posix_timers.c
index 5a246a02dff3..15cf56d32155 100644
--- a/tools/testing/selftests/timers/posix_timers.c
+++ b/tools/testing/selftests/timers/posix_timers.c
@@ -122,7 +122,7 @@ static int check_itimer(int which)
else if (which == ITIMER_REAL)
idle_loop();
- gettimeofday(&end, NULL);
+ err = gettimeofday(&end, NULL);
if (err < 0) {
perror("Can't call gettimeofday()\n");
return -1;
@@ -175,7 +175,7 @@ static int check_timer_create(int which)
user_loop();
- gettimeofday(&end, NULL);
+ err = gettimeofday(&end, NULL);
if (err < 0) {
perror("Can't call gettimeofday()\n");
return -1;