diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-12-04 06:28:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-04 06:28:34 -0500 |
commit | 05df0c50aed0639fe382efa7d7199083cc09dbc4 (patch) | |
tree | 59ccf5b6fa678384ff83ee0ee1288de92d197041 /test | |
parent | d1193b1b8ca6da720b5d4eafff5733e367c07578 (diff) | |
parent | e58fb21ced99db634a38c9e8fbfd04044efe3131 (diff) | |
download | podman-05df0c50aed0639fe382efa7d7199083cc09dbc4.tar.gz podman-05df0c50aed0639fe382efa7d7199083cc09dbc4.tar.bz2 podman-05df0c50aed0639fe382efa7d7199083cc09dbc4.zip |
Merge pull request #8589 from yan12125/container-logs-unix-timestamps
Support Unix timestamps for `podman logs --since`
Diffstat (limited to 'test')
-rw-r--r-- | test/system/035-logs.bats | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/system/035-logs.bats b/test/system/035-logs.bats index a3d6a5800..a081a7ce1 100644 --- a/test/system/035-logs.bats +++ b/test/system/035-logs.bats @@ -21,6 +21,9 @@ load helpers run_podman logs $cid is "$output" "$rand_string" "output from podman-logs after container is run" + # test --since with Unix timestamps + run_podman logs --since 1000 $cid + run_podman rm $cid } |