diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2024-02-21 21:59:47 (EST) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2024-02-21 21:59:47 (EST) |
commit | 4598385d984b94cb0b0e54cb971a2afc610f334d (patch) | |
tree | b0f6f30efcc8fb65c1e2e6a444fe5cfe8dca29b6 | |
parent | 5e9bdfaebd234423df81992317e7c2a46bc315c6 (diff) |
tests/exe/ob-gencontrol.sh: Disambiguate test names
-rwxr-xr-x | tests/exe/ob-gencontrol.sh | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/tests/exe/ob-gencontrol.sh b/tests/exe/ob-gencontrol.sh index ae84875..309e28a 100755 --- a/tests/exe/ob-gencontrol.sh +++ b/tests/exe/ob-gencontrol.sh @@ -47,7 +47,7 @@ cp -Rp '../../src/' 'src/' for run in 'first' 'second'; do command_ok_ "ob-gencontrol ${run} run exit status" -- ob-gencontrol - cmd_is 'control file' cat 'foo.control/control' <<-EOF + cmd_is "${run} run foo control file" cat 'foo.control/control' <<-EOF Package: foo:i686-linux-glibc Source: foo Version: 1.0-1 @@ -64,10 +64,10 @@ for run in 'first' 'second'; do . This package provides a frobnicator of objects. EOF - cmd_is 'md5sums file' cat 'foo.control/md5sums' <<-EOF + cmd_is "${run} run foo md5sums file" cat 'foo.control/md5sums' <<-EOF 582b7bd410b9e196dfb0a706ac95bf23 /usr/bin/foo.sh EOF - cmd_is 'control file' cat 'bar.control/control' <<-EOF + cmd_is "${run} run bar control file" cat 'bar.control/control' <<-EOF Package: bar Source: foo Version: 1.0-1 @@ -84,7 +84,8 @@ for run in 'first' 'second'; do . This package assists in bit-banging all yer registers. EOF - cmd_is 'control file' cat 'baz+qux.control/control' <<-EOF + cmd_is "${run} run baz+qux control file" cat 'baz+qux.control/control' \ + <<-EOF Package: baz+qux Source: foo Version: 1.0-1 @@ -103,7 +104,8 @@ for run in 'first' 'second'; do )confused with the one that instead contains a hyphen. EOF - cmd_is 'control file' cat 'baz-qux.control/control' <<-EOF + cmd_is "${run} baz-qux foo control file" cat 'baz-qux.control/control' \ + <<-EOF Package: baz-qux Source: foo Version: 1.0-1 |