update: testcases and result for #1032, #1033, #1034

This commit is contained in:
Ken Sato
2018-03-16 11:14:29 +09:00
parent 6a979cf4b8
commit 0d9c1df75a
7 changed files with 87 additions and 57 deletions

View File

@@ -73,11 +73,11 @@ int main(int argc, char* argv[])
printf("[ RUSAGE_CHILDREN ]\n");
OKNG(cur_utime != 0,
" utime: %d.%06d s (+ %d.%06d s)",
" utime: %d.%06d s (+ %d.%06d s) <- 子プロセスが未終了のため、0",
(cur_utime / ONE_SEC), (cur_utime % ONE_SEC),
(delta_utime / ONE_SEC), (delta_utime % ONE_SEC));
OKNG(cur_stime != 0,
" stime: %d.%06d s (+ %d.%06d s)",
" stime: %d.%06d s (+ %d.%06d s) <- 子プロセスが未終了のため、0",
(cur_stime / ONE_SEC), (cur_stime % ONE_SEC),
(delta_stime / ONE_SEC), (delta_stime % ONE_SEC));