diff options
author | Rob Landley <rob@landley.net> | 2016-02-19 17:56:01 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2016-02-19 17:56:01 -0600 |
commit | 5ec9f52a39c0f5a631cd60f12560698033eba7dc (patch) | |
tree | 398d5c739e130eadee26f42ddbd8e42eff0c859c /scripts | |
parent | 137f5c9b0937dfa204ea2580e58430c7180a79c5 (diff) | |
download | toybox-5ec9f52a39c0f5a631cd60f12560698033eba7dc.tar.gz |
Add test_COMMAND for each command, update "make help" to describe TEST_HOST
and VERBOSE=fail, and fix a quote mismatch.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/genconfig.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/genconfig.sh b/scripts/genconfig.sh index c0ac56d2..5b0715f4 100755 --- a/scripts/genconfig.sh +++ b/scripts/genconfig.sh @@ -135,6 +135,7 @@ do [ "$NAME" == help ] && continue [ "$NAME" == install ] && continue echo -e "$NAME: $FILE *.[ch] lib/*.[ch]\n\tscripts/single.sh $NAME\n" + echo -e "test_$NAME:\n\tscripts/test.sh $NAME\n" [ "${FILE/pending//}" != "$FILE" ] && PENDING="$PENDING $NAME" || WORKING="$WORKING $NAME" |