mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-24 09:17:53 +00:00
TMPDIR is typically /tmp which is typically(*) a tmpfs.
This PR ignores $TMPDIR when $CI is defined, forcing all
e2e tests to set up one central working directory in /var/tmp
instead.
Also, lots of cleanup.
(*) For many years, up to and still including the time of
this PR, /tmp on Fedora CI VMs is actually NOT tmpfs,
it is just / (root). This is nonstandard and undesirable.
Efforts are underway to remove this special case.
Signed-off-by: Ed Santiago <santiago@redhat.com>
16 lines
656 B
Text
16 lines
656 B
Text
## assert-podman-args -v /host/dir:/container/volume
|
|
## assert-podman-args -v /host/dir2:/container/volume2:Z
|
|
## assert-podman-args-regex -v .*/podman-e2e-.*/subtest-.*/quadlet/host/dir3:/container/volume3
|
|
## assert-podman-args -v named:/container/named
|
|
## assert-podman-args -v systemd-quadlet:/container/quadlet
|
|
## assert-podman-args -v %h/container:/container/volume4
|
|
|
|
[Container]
|
|
Image=localhost/imagename
|
|
Volume=/host/dir:/container/volume
|
|
Volume=/host/dir2:/container/volume2:Z
|
|
Volume=./host/dir3:/container/volume3
|
|
Volume=/container/empty
|
|
Volume=named:/container/named
|
|
Volume=quadlet.volume:/container/quadlet
|
|
Volume=%h/container:/container/volume4
|