aboutsummaryrefslogtreecommitdiff
path: root/coreutils/test.c
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2015-05-18 09:36:27 +0100
committerRon Yorston <rmy@pobox.com>2015-05-18 09:36:27 +0100
commit60063627a6d540871061854a362047e6517f821c (patch)
tree0de228630450c64e085f2e3f5141b5ba17eccab3 /coreutils/test.c
parentec39cb770ddd5c0e085d5c4ee10be65bab5e7a44 (diff)
parent9a595bb36ded308e6d4336aef2c1cd3ac738a398 (diff)
downloadbusybox-w32-60063627a6d540871061854a362047e6517f821c.tar.gz
busybox-w32-60063627a6d540871061854a362047e6517f821c.tar.bz2
busybox-w32-60063627a6d540871061854a362047e6517f821c.zip
Merge branch 'busybox' into mergeFRP
Diffstat (limited to 'coreutils/test.c')
-rw-r--r--coreutils/test.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/coreutils/test.c b/coreutils/test.c
index 9e709a709..422d24c54 100644
--- a/coreutils/test.c
+++ b/coreutils/test.c
@@ -39,14 +39,9 @@
39//config: help 39//config: help
40//config: Enable 64-bit support in test. 40//config: Enable 64-bit support in test.
41 41
42/* "test --help" does not print help (POSIX compat), only "[ --help" does. 42/* "test --help" is special-cased to ignore --help */
43 * We display "<applet> EXPRESSION ]" here (not "<applet> EXPRESSION") 43//usage:#define test_trivial_usage NOUSAGE_STR
44 * Unfortunately, it screws up generated BusyBox.html. TODO. */ 44//usage:#define test_full_usage ""
45//usage:#define test_trivial_usage
46//usage: "EXPRESSION ]"
47//usage:#define test_full_usage "\n\n"
48//usage: "Check file types, compare values etc. Return a 0/1 exit code\n"
49//usage: "depending on logical value of EXPRESSION"
50//usage: 45//usage:
51//usage:#define test_example_usage 46//usage:#define test_example_usage
52//usage: "$ test 1 -eq 2\n" 47//usage: "$ test 1 -eq 2\n"