From 73cfb04d1107e95f9c2f9d06b58acab1243c0f7f Mon Sep 17 00:00:00 2001 From: Nathan Ross Date: Sun, 20 Dec 2015 19:48:52 -0500 Subject: [PATCH] add busybox test instructions to README.md --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/README.md b/README.md index 71b110aa1..2675aa74d 100644 --- a/README.md +++ b/README.md @@ -110,6 +110,26 @@ To test only a few of the available utilities: make TEST='UTILITY_1 UTILITY_2' test ``` +Run busybox tests +----------------- + +This testing functionality is only available on *nix operating systems + +To run busybox's tests for all utilities for which busybox has tests +``` +make busytest +``` + +To run busybox's tests for a few of the available utilities +``` +make BUSYTEST='UTILITY_1 UTILITY_2' busytest +``` + +To pass an argument like "-v" to the busybox test runtime +``` +make BUSYTEST='UTILITY_1 UTILITY_2' RUNTEST_ARGS='-v' busytest +``` + Contribute ----------