diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-06-04 19:59:49 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-06-04 19:59:49 +0200 |
commit | e4070cb0d7586037c6fcf0f0f00d8d5b97f649d3 (patch) | |
tree | abb5ef8065937f596c1e1e1249dc745c1076465b /coreutils/test.c | |
parent | 6db13732954b23bd0f6f55c5b3c3941f0547141c (diff) | |
download | busybox-w32-e4070cb0d7586037c6fcf0f0f00d8d5b97f649d3.tar.gz busybox-w32-e4070cb0d7586037c6fcf0f0f00d8d5b97f649d3.tar.bz2 busybox-w32-e4070cb0d7586037c6fcf0f0f00d8d5b97f649d3.zip |
partially migrate coreutils to Config.src and Kbuild.src
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
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 a1d164574..cc4a132a7 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 n | ||
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 n | ||
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 | ||