diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-14 12:47:25 +1000 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-14 12:47:25 +1000 |
commit | 9df56f96fd9a213189ca94c1fccfc3c42bd9c16a (patch) | |
tree | db1db005b59e2b78d5daf9527fa8fc604e07e8c4 /coreutils/test.c | |
parent | 30c62e541a1484fedc3d689d62f96d246a28b147 (diff) | |
parent | 5f3303712ef483d270097cae4ba0a559b1056121 (diff) | |
download | busybox-w32-9df56f96fd9a213189ca94c1fccfc3c42bd9c16a.tar.gz busybox-w32-9df56f96fd9a213189ca94c1fccfc3c42bd9c16a.tar.bz2 busybox-w32-9df56f96fd9a213189ca94c1fccfc3c42bd9c16a.zip |
Merge branch 'origin/master' (early part)
Diffstat (limited to 'coreutils/test.c')
-rw-r--r-- | coreutils/test.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/coreutils/test.c b/coreutils/test.c index 0b9322316..fb5778760 100644 --- a/coreutils/test.c +++ b/coreutils/test.c | |||
@@ -19,6 +19,26 @@ | |||
19 | * Original copyright notice states: | 19 | * Original copyright notice states: |
20 | * "This program is in the Public Domain." | 20 | * "This program is in the Public Domain." |
21 | */ | 21 | */ |
22 | |||
23 | //kbuild:lib-$(CONFIG_TEST) += test.o test_ptr_hack.o | ||
24 | //kbuild:lib-$(CONFIG_ASH) += test.o test_ptr_hack.o | ||
25 | //kbuild:lib-$(CONFIG_HUSH) += test.o test_ptr_hack.o | ||
26 | |||
27 | //config:config TEST | ||
28 | //config: bool "test" | ||
29 | //config: default y | ||
30 | //config: help | ||
31 | //config: test is used to check file types and compare values, | ||
32 | //config: returning an appropriate exit code. The bash shell | ||
33 | //config: has test built in, ash can build it in optionally. | ||
34 | //config: | ||
35 | //config:config FEATURE_TEST_64 | ||
36 | //config: bool "Extend test to 64 bit" | ||
37 | //config: default y | ||
38 | //config: depends on TEST || ASH_BUILTIN_TEST || HUSH | ||
39 | //config: help | ||
40 | //config: Enable 64-bit support in test. | ||
41 | |||
22 | #include "libbb.h" | 42 | #include "libbb.h" |
23 | #include <setjmp.h> | 43 | #include <setjmp.h> |
24 | 44 | ||