diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-08-19 00:53:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-19 00:53:58 +0200 |
commit | 9d096c1c4ea5308c94f779444b61015eeef2972a (patch) | |
tree | 5ab878b518459f821e4c73d4e35f10c26569d5bd /test | |
parent | ff1f81b14a2944a1651e1b404681972ff3483d36 (diff) | |
parent | d9f0c48176cb5049605ae0e3aad4173685d9c6ea (diff) | |
download | podman-9d096c1c4ea5308c94f779444b61015eeef2972a.tar.gz podman-9d096c1c4ea5308c94f779444b61015eeef2972a.tar.bz2 podman-9d096c1c4ea5308c94f779444b61015eeef2972a.zip |
Merge pull request #7361 from Luap99/version-builttime
fix podman version output to include git commit and builttime
Diffstat (limited to 'test')
-rw-r--r-- | test/system/001-basic.bats | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/system/001-basic.bats b/test/system/001-basic.bats index b23107e79..a5a3324fb 100644 --- a/test/system/001-basic.bats +++ b/test/system/001-basic.bats @@ -24,6 +24,13 @@ function setup() { is "${lines[0]}" "Version:[ ]\+[1-9][0-9.]\+" "Version line 1" is "$output" ".*Go Version: \+" "'Go Version' in output" is "$output" ".*API Version: \+" "API version in output" + + # Test that build date is reasonable, e.g. after 2019-01-01 + local built=$(expr "$output" : ".*Built: \+\(.*\)" | head -n1) + local built_t=$(date --date="$built" +%s) + if [ $built_t -lt 1546300800 ]; then + die "Preposterous 'Built' time in podman version: '$built'" + fi } |