aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2016-11-23 18:31:48 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2016-11-23 18:31:48 +0100
commit15fb91cefb22d64952f34fe246fc8f257172af63 (patch)
treeb26c3168f2ea5e185eee1041c6f521855398783a /shell
parent73f743a381dc389287d2d0e56a2b7988f67c0bfc (diff)
downloadbusybox-w32-15fb91cefb22d64952f34fe246fc8f257172af63.tar.gz
busybox-w32-15fb91cefb22d64952f34fe246fc8f257172af63.tar.bz2
busybox-w32-15fb91cefb22d64952f34fe246fc8f257172af63.zip
test: make [ and [[ forms individually selectable
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 87f2127a1..15246f55f 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -9282,9 +9282,9 @@ static const struct builtincmd builtintab[] = {
9282 { BUILTIN_SPEC_REG ":" , truecmd }, 9282 { BUILTIN_SPEC_REG ":" , truecmd },
9283#if ENABLE_ASH_BUILTIN_TEST 9283#if ENABLE_ASH_BUILTIN_TEST
9284 { BUILTIN_REGULAR "[" , testcmd }, 9284 { BUILTIN_REGULAR "[" , testcmd },
9285#if ENABLE_ASH_BASH_COMPAT 9285# if ENABLE_ASH_BASH_COMPAT
9286 { BUILTIN_REGULAR "[[" , testcmd }, 9286 { BUILTIN_REGULAR "[[" , testcmd },
9287#endif 9287# endif
9288#endif 9288#endif
9289#if ENABLE_ASH_ALIAS 9289#if ENABLE_ASH_ALIAS
9290 { BUILTIN_REG_ASSG "alias" , aliascmd }, 9290 { BUILTIN_REG_ASSG "alias" , aliascmd },