aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/testing/selftests/timers/nanosleep.c
diff options
context:
space:
mode:
authorKees Cook <keescook@chromium.org>2019-05-20 15:37:49 -0700
committerShuah Khan <skhan@linuxfoundation.org>2019-05-21 09:24:31 -0600
commitfe48319243a626c860fd666ca032daacc2ba84a5 (patch)
treeb5fd41f29077fd65df3ce9a7a6b3cbd62b3d4e96 /tools/testing/selftests/timers/nanosleep.c
parentselftests: Remove forced unbuffering for test running (diff)
downloadwireguard-linux-fe48319243a626c860fd666ca032daacc2ba84a5.tar.xz
wireguard-linux-fe48319243a626c860fd666ca032daacc2ba84a5.zip
selftests/timers: Add missing fflush(stdout) calls
When running under a pipe, some timer tests would not report output in real-time because stdout flushes were missing after printf()s that lacked a newline. This adds them to restore real-time status output that humans can enjoy. Signed-off-by: Kees Cook <keescook@chromium.org> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'tools/testing/selftests/timers/nanosleep.c')
-rw-r--r--tools/testing/selftests/timers/nanosleep.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/testing/selftests/timers/nanosleep.c b/tools/testing/selftests/timers/nanosleep.c
index 8adb0bb51d4d..71b5441c2fd9 100644
--- a/tools/testing/selftests/timers/nanosleep.c
+++ b/tools/testing/selftests/timers/nanosleep.c
@@ -142,6 +142,7 @@ int main(int argc, char **argv)
continue;
printf("Nanosleep %-31s ", clockstring(clockid));
+ fflush(stdout);
length = 10;
while (length <= (NSEC_PER_SEC * 10)) {