diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-09-30 00:24:55 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-30 00:24:55 +0000 |
commit | b68b6f334d4a83de35d68cc359365b348e72ad6b (patch) | |
tree | d78aad8deff9f2d05a4af3b2f3c3e272c7f9a37d /test/system/build-testimage | |
parent | 453333a35cc791e9031e5d24e0ac5e76a2b2aa75 (diff) | |
parent | 258ccfc3c9f896393161e66c86ad2b11a9a22927 (diff) | |
download | podman-b68b6f334d4a83de35d68cc359365b348e72ad6b.tar.gz podman-b68b6f334d4a83de35d68cc359365b348e72ad6b.tar.bz2 podman-b68b6f334d4a83de35d68cc359365b348e72ad6b.zip |
Merge pull request #7832 from edsantiago/bats_run_tz
System tests: add podman run --tz
Diffstat (limited to 'test/system/build-testimage')
-rwxr-xr-x | test/system/build-testimage | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/system/build-testimage b/test/system/build-testimage index ef14d3afd..53ade57f0 100755 --- a/test/system/build-testimage +++ b/test/system/build-testimage @@ -35,6 +35,12 @@ cd $tmpdir # 'image mount' test will confirm that this file exists and has our YMD tag echo $YMD >testimage-id +# ...but set the timestamp on the file itself to a constant well-known +# value, for use by the 'run --tz' test. Date value chosen for nerdiness +# and because it's in the past. (Much as I'd love FFFFFFFF, we can't +# use any future date because of unpredictable leap second adjustments). +touch --date=@1600000000 testimage-id + # 'pod' test will use this for --infra-command cat >pause <<EOF #!/bin/sh @@ -49,6 +55,7 @@ EOF chmod 755 pause # alpine because it's small and light and reliable +# - check for updates @ https://hub.docker.com/_/alpine # busybox-extras provides httpd needed in 500-networking.bats cat >Containerfile <<EOF FROM docker.io/library/alpine:3.12.0 |