diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-08-01 19:34:28 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-08-02 20:22:21 +0300 |
commit | 5d81c755c77ab6b182ab713de29826bace79f466 (patch) | |
tree | 12899bc65027c4b92674a63484915911ce86ff70 /tests/pkg-unpack.testscript | |
parent | 0e920ebda6b4e69da318cf5e9c4288c283f1e636 (diff) |
Replace some testscript commands single-character options with their long variants for clarity
Diffstat (limited to 'tests/pkg-unpack.testscript')
-rw-r--r-- | tests/pkg-unpack.testscript | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/pkg-unpack.testscript b/tests/pkg-unpack.testscript index 834e0df..40f8695 100644 --- a/tests/pkg-unpack.testscript +++ b/tests/pkg-unpack.testscript @@ -132,7 +132,7 @@ $* 2>>EOE != 0 info: use 'pkg-unpack --replace|-r' to replace EOE - $* -re $src/libfoo-1.1.0 2>'using libfoo/1.1.0 (external)'; + $* --replace --existing $src/libfoo-1.1.0 2>'using libfoo/1.1.0 (external)'; $pkg_status libfoo/1.1.0 1>'libfoo unpacked 1.1.0'; $pkg_purge libfoo 2>'purged libfoo/1.1.0' @@ -151,7 +151,7 @@ $* 2>>EOE != 0 info: use 'pkg-unpack --replace|-r' to replace EOE - $* -re $src/libfoo-1.1.0 2>'using libfoo/1.1.0 (external)'; + $* --replace --existing $src/libfoo-1.1.0 2>'using libfoo/1.1.0 (external)'; $pkg_status libfoo/1.1.0 1>'libfoo unpacked 1.1.0'; $pkg_purge libfoo 2>'purged libfoo/1.1.0' @@ -198,7 +198,7 @@ $* 2>>EOE != 0 $clone_cfg; cp --no-cleanup -r $src/libfoo-1.1.0 ./; - $* -pe libfoo-1.1.0 2>'using libfoo/1.1.0 (external)'; + $* --purge --existing libfoo-1.1.0 2>'using libfoo/1.1.0 (external)'; $pkg_purge libfoo 2>'purged libfoo/1.1.0' } |