aboutsummaryrefslogtreecommitdiff
path: root/coreutils/test.c
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2017-07-24 11:40:28 +0100
committerRon Yorston <rmy@pobox.com>2017-07-24 12:03:28 +0100
commit60411636073cdc08e8005f0de00098e6dd00eaf5 (patch)
tree58673b64af1e663280be81f798c8f66ce116d1dd /coreutils/test.c
parenteeceafbc5c4caf513c6d92b7d71ecb0ccd89a3f8 (diff)
parentb72f1ef17b97802d33f0ac522f64bea0f65442c5 (diff)
downloadbusybox-w32-60411636073cdc08e8005f0de00098e6dd00eaf5.tar.gz
busybox-w32-60411636073cdc08e8005f0de00098e6dd00eaf5.tar.bz2
busybox-w32-60411636073cdc08e8005f0de00098e6dd00eaf5.zip
Merge branch 'busybox' into merge
Diffstat (limited to 'coreutils/test.c')
-rw-r--r--coreutils/test.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/coreutils/test.c b/coreutils/test.c
index d4f93312a..fca55551e 100644
--- a/coreutils/test.c
+++ b/coreutils/test.c
@@ -20,31 +20,31 @@
20 * "This program is in the Public Domain." 20 * "This program is in the Public Domain."
21 */ 21 */
22//config:config TEST 22//config:config TEST
23//config: bool "test" 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))