aboutsummaryrefslogtreecommitdiff
path: root/coreutils/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/test.c')
-rw-r--r--coreutils/test.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/coreutils/test.c b/coreutils/test.c
index 5cca5d1f2..d8ac42e22 100644
--- a/coreutils/test.c
+++ b/coreutils/test.c
@@ -23,28 +23,28 @@
23//config: bool "test (3.6 kb)" 23//config: bool "test (3.6 kb)"
24//config: default y 24//config: default y
25//config: help 25//config: help
26//config: test is used to check file types and compare values, 26//config: test is used to check file types and compare values,
27//config: returning an appropriate exit code. The bash shell 27//config: returning an appropriate exit code. The bash shell
28//config: has test built in, ash can build it in optionally. 28//config: has test built in, ash can build it in optionally.
29//config: 29//config:
30//config:config TEST1 30//config:config TEST1
31//config: bool "test as [" 31//config: bool "test as ["
32//config: default y 32//config: default y
33//config: help 33//config: help
34//config: Provide test command in the "[ EXPR ]" form 34//config: Provide test command in the "[ EXPR ]" form
35//config: 35//config:
36//config:config TEST2 36//config:config TEST2
37//config: bool "test as [[" 37//config: bool "test as [["
38//config: default y 38//config: default y
39//config: help 39//config: help
40//config: Provide test command in the "[[ EXPR ]]" form 40//config: Provide test command in the "[[ EXPR ]]" form
41//config: 41//config:
42//config:config FEATURE_TEST_64 42//config:config FEATURE_TEST_64
43//config: bool "Extend test to 64 bit" 43//config: bool "Extend test to 64 bit"
44//config: default y 44//config: default y
45//config: depends on TEST || TEST1 || TEST2 || ASH_TEST || HUSH_TEST 45//config: depends on TEST || TEST1 || TEST2 || ASH_TEST || HUSH_TEST
46//config: help 46//config: help
47//config: Enable 64-bit support in test. 47//config: Enable 64-bit support in test.
48 48
49//applet:IF_TEST(APPLET_NOFORK(test, test, BB_DIR_USR_BIN, BB_SUID_DROP, test)) 49//applet:IF_TEST(APPLET_NOFORK(test, test, BB_DIR_USR_BIN, BB_SUID_DROP, test))
50//applet:IF_TEST1(APPLET_NOFORK([, test, BB_DIR_USR_BIN, BB_SUID_DROP, test)) 50//applet:IF_TEST1(APPLET_NOFORK([, test, BB_DIR_USR_BIN, BB_SUID_DROP, test))