mirror of
https://github.com/containers/podman.git
synced 2025-08-03 01:37:51 +08:00
TEMPORARY(?) instrumentation for unlinkat-ebusy
Instrument system tests in hopes of tracking down #17216, the unlinkat-ebusy-hosed flake. Oh, also, timestamp.awk: timestamps have always been UTC, but add a 'Z' to make it unambiguous. Signed-off-by: Ed Santiago <santiago@redhat.com>
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
BEGIN {
|
||||
STARTTIME=systime()
|
||||
printf "[%s] START", strftime("%T")
|
||||
printf " - All [+xxxx] lines that follow are relative to %s.\n", strftime("%FT%T")
|
||||
printf " - All [+xxxx] lines that follow are relative to %s.\n", strftime("%FT%TZ", systime(), 1)
|
||||
}
|
||||
|
||||
{
|
||||
@ -16,5 +16,5 @@ BEGIN {
|
||||
|
||||
END {
|
||||
printf "[%s] END", strftime("%T")
|
||||
printf " - [%+05ds] total duration since %s\n", systime()-STARTTIME, strftime("%FT%T")
|
||||
printf " - [%+05ds] total duration since %s\n", systime()-STARTTIME, strftime("%FT%TZ", systime(), 1)
|
||||
}
|
||||
|
Reference in New Issue
Block a user