diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-06-18 01:14:19 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-06-18 01:14:19 (EDT) |
commit | c589ff445c5a959bb19fefc559fd9042dfb72c8e (patch) | |
tree | 7677be66e85bc719fe4bb7f2a038ab83049700c3 /tests/exe | |
parent | 5ab540bc36ef272b3d9096f204ebad61e6a5c51a (diff) |
ob-buildopk, ob-unpacksource, tests: Use ${TAR}
Diffstat (limited to 'tests/exe')
-rwxr-xr-x | tests/exe/ob-buildopk.sh | 4 | ||||
-rwxr-xr-x | tests/exe/ob-unpacksource.sh | 2 | ||||
-rwxr-xr-x | tests/exe/opkbuild.sh | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/tests/exe/ob-buildopk.sh b/tests/exe/ob-buildopk.sh index 3b211f2..020824a 100755 --- a/tests/exe/ob-buildopk.sh +++ b/tests/exe/ob-buildopk.sh @@ -27,7 +27,7 @@ ls_outer() local opk="${1}" shift 1 - tar -tzf "${opk}" + ${TAR} -tzf "${opk}" } ls_inner() @@ -36,7 +36,7 @@ ls_inner() local mbr="${2}" shift 2 - tar -xzOf "${opk}" "${mbr}" | tar -tz + ${TAR} -xzOf "${opk}" "${mbr}" | ${TAR} -tz } plan_ 9 diff --git a/tests/exe/ob-unpacksource.sh b/tests/exe/ob-unpacksource.sh index fbe94a2..901c221 100755 --- a/tests/exe/ob-unpacksource.sh +++ b/tests/exe/ob-unpacksource.sh @@ -34,7 +34,7 @@ cmd_is 'native sources unpacked' cat 'src/src/foo.sh' <<-EOF rm -Rf 'src/' mv '../src/' 'foo/' -tar -czf '../foo-1.0.orig.tar.gz' 'foo/' +${TAR} -czf '../foo-1.0.orig.tar.gz' 'foo/' rm -Rf 'foo/' command_ok_ 'ob-unpacksource exit status' ob-unpacksource diff --git a/tests/exe/opkbuild.sh b/tests/exe/opkbuild.sh index 6baeab0..b569986 100755 --- a/tests/exe/opkbuild.sh +++ b/tests/exe/opkbuild.sh @@ -27,7 +27,7 @@ ls_outer() local opk="${1}" shift 1 - tar -tzf "${opk}" + ${TAR} -tzf "${opk}" } ls_inner() @@ -36,7 +36,7 @@ ls_inner() local mbr="${2}" shift 2 - tar -xzOf "${opk}" "${mbr}" | tar -tz + ${TAR} -xzOf "${opk}" "${mbr}" | ${TAR} -tz } plan_ 12 |