diff options
author | TomSweeneyRedHat <tsweeney@redhat.com> | 2019-02-28 15:03:31 -0500 |
---|---|---|
committer | TomSweeneyRedHat <tsweeney@redhat.com> | 2019-02-28 15:04:32 -0500 |
commit | d87894e5a0258864e673eec3177a4ee6ef3d8463 (patch) | |
tree | c88297725b719f4ab5f3d7bd443a65b357d9aa82 /test/test_podman_baseline.sh | |
parent | 4a109a71996e99c9a95b639bbbee1c5e30450c97 (diff) | |
download | podman-d87894e5a0258864e673eec3177a4ee6ef3d8463.tar.gz podman-d87894e5a0258864e673eec3177a4ee6ef3d8463.tar.bz2 podman-d87894e5a0258864e673eec3177a4ee6ef3d8463.zip |
Fix -s to --storage-driver in baseline test
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
Changes the short option `-s` to the fully specified `--storage-driver`.
The short version is no longer supported.
Diffstat (limited to 'test/test_podman_baseline.sh')
-rwxr-xr-x | test/test_podman_baseline.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_podman_baseline.sh b/test/test_podman_baseline.sh index 8a878b4e7..664fd2b03 100755 --- a/test/test_podman_baseline.sh +++ b/test/test_podman_baseline.sh @@ -195,7 +195,7 @@ podman rmi --all ######## # 1.004608 MB is 1,004,608 bytes. The container overhead is 4608 bytes (or 9 512 byte pages), so this allocates 1 MB of usable storage -PODMANBASE="-s overlay --storage-opt overlay.size=1.004608M --root /tmp/podman_test/crio" +PODMANBASE="--storage-driver overlay --storage-opt overlay.size=1.004608M --root /tmp/podman_test/crio" TMPDIR=/tmp/podman_test mkdir $TMPDIR dd if=/dev/zero of=$TMPDIR/virtfs bs=1024 count=30720 |