diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-03-18 13:11:45 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-03-18 13:11:45 (EDT) |
commit | 2973e6672d8c7b9aac28f0f0e7756e929e59514d (patch) | |
tree | f4b61b86fc4590d62b82b9b9c22b94d64678baf7 /tests/exe | |
parent | 752fc2f1dc5c45a703ed5c822777e2bd1b4064a0 (diff) |
tests/exe/opkbuild.sh: Handle missing md5sums
Diffstat (limited to 'tests/exe')
-rwxr-xr-x | tests/exe/opkbuild.sh | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/tests/exe/opkbuild.sh b/tests/exe/opkbuild.sh index d425c1a..165c7d3 100755 --- a/tests/exe/opkbuild.sh +++ b/tests/exe/opkbuild.sh @@ -56,12 +56,24 @@ for opk in '../src-foo_1.0-1_src_all.opk' \ data.tar.gz debian-binary EOF - cmd_is 'control.tar.gz contents' ls_inner "${opk}" control.tar.gz <<-EOF - ./ - ./control - ./md5sums - EOF done +cmd_is 'control.tar.gz contents' \ + ls_inner '../src-foo_1.0-1_src_all.opk' control.tar.gz <<-EOF + ./ + ./control + ./md5sums + EOF +cmd_is 'control.tar.gz contents' \ + ls_inner '../foo_1.0-1_i686-linux-glibc_all.opk' control.tar.gz <<-EOF + ./ + ./control + ./md5sums + EOF +cmd_is 'control.tar.gz contents' \ + ls_inner '../bar_1.0-1_all_all.opk' control.tar.gz <<-EOF + ./ + ./control + EOF cmd_is 'data.tar.gz contents' \ ls_inner '../foo_1.0-1_i686-linux-glibc_all.opk' data.tar.gz <<-EOF ./ |