summaryrefslogtreecommitdiff
path: root/coreutils/test.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-06-04 19:59:49 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-06-04 19:59:49 +0200
commite4070cb0d7586037c6fcf0f0f00d8d5b97f649d3 (patch)
treeabb5ef8065937f596c1e1e1249dc745c1076465b /coreutils/test.c
parent6db13732954b23bd0f6f55c5b3c3941f0547141c (diff)
downloadbusybox-e4070cb0d7586037c6fcf0f0f00d8d5b97f649d3.tar.gz
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.c20
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 @@
* Original copyright notice states:
* "This program is in the Public Domain."
*/
+
+//kbuild:lib-$(CONFIG_TEST) += test.o test_ptr_hack.o
+//kbuild:lib-$(CONFIG_ASH) += test.o test_ptr_hack.o
+//kbuild:lib-$(CONFIG_HUSH) += test.o test_ptr_hack.o
+
+//config:config TEST
+//config: bool "test"
+//config: default n
+//config: help
+//config: test is used to check file types and compare values,
+//config: returning an appropriate exit code. The bash shell
+//config: has test built in, ash can build it in optionally.
+//config:
+//config:config FEATURE_TEST_64
+//config: bool "Extend test to 64 bit"
+//config: default n
+//config: depends on TEST || ASH_BUILTIN_TEST || HUSH
+//config: help
+//config: Enable 64-bit support in test.
+
#include "libbb.h"
#include <setjmp.h>