diff options
author | Paul Holzinger <paul.holzinger@web.de> | 2020-08-18 19:37:05 +0200 |
---|---|---|
committer | Paul Holzinger <paul.holzinger@web.de> | 2020-08-18 20:37:18 +0200 |
commit | d9f0c48176cb5049605ae0e3aad4173685d9c6ea (patch) | |
tree | 40069b4ed7afda21ba099008498aa69de23090a2 /test/system/001-basic.bats | |
parent | 748e8829da76394ec956ea6590599fab01b467b7 (diff) | |
download | podman-d9f0c48176cb5049605ae0e3aad4173685d9c6ea.tar.gz podman-d9f0c48176cb5049605ae0e3aad4173685d9c6ea.tar.bz2 podman-d9f0c48176cb5049605ae0e3aad4173685d9c6ea.zip |
fix podman version output to include git commit and builttime
Add the go module version v2 to the libpod path.
Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
Diffstat (limited to 'test/system/001-basic.bats')
-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 } |