diff options
author | Michael Tokarev <mjt@tls.msk.ru> | 2013-11-10 22:01:38 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-11-10 22:06:06 +0100 |
commit | afa63b2dcdc9b9d0183ffd84599ea5d4ad94d639 (patch) | |
tree | af1b15bd42d42ee5be891983d86532e6e41c7ab8 /testsuite/hostid | |
parent | 5e63776212f8fab4fba08ab2b99dd5241f0c3880 (diff) | |
download | busybox-w32-afa63b2dcdc9b9d0183ffd84599ea5d4ad94d639.tar.gz busybox-w32-afa63b2dcdc9b9d0183ffd84599ea5d4ad94d639.tar.bz2 busybox-w32-afa63b2dcdc9b9d0183ffd84599ea5d4ad94d639.zip |
fix bashisms in testsuite/
These places use ${var/search/replace}, $((n++) and
`type -p' constructs which are not-so-standard.
Replace with equivalent constructs.
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'testsuite/hostid')
-rw-r--r-- | testsuite/hostid/hostid-works | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/testsuite/hostid/hostid-works b/testsuite/hostid/hostid-works index bcfd717af..8c20bdfcc 100644 --- a/testsuite/hostid/hostid-works +++ b/testsuite/hostid/hostid-works | |||
@@ -1,8 +1,6 @@ | |||
1 | h=x$(busybox hostid) | 1 | h=x$(busybox hostid) |
2 | # Is $h a sequence of hex numbers? | 2 | # Is $h a sequence of hex numbers? |
3 | x="${h//[0123456789abcdef]/x}" | 3 | case "$h" in |
4 | x="${x//xxx/x}" | 4 | x*[!0-9a-f]*) false;; |
5 | x="${x//xxx/x}" | 5 | *) true;; |
6 | x="${x//xxx/x}" | 6 | esac |
7 | x="${x//xx/x}" | ||
8 | test x"$x" = x"x" | ||