aboutsummaryrefslogtreecommitdiff
path: root/scripts
AgeCommit message (Collapse)Author
2012-10-16Update roadmap/status with new toolbox analysis based on android system/core ↵Rob Landley
git repo.
2012-10-08New build infrastructure to generate FLAG_ macros and TT alias, #define ↵Rob Landley
FOR_commandname before #including toys.h to trigger it. Rename DEFINE_GLOBALS() to just GLOBALS() (because I could never remember if it was DECLARE_GLOBALS). Convert existing commands to use new infrastructure, and replace optflag constants with FLAG_ macros where appropriate.
2012-10-07Test tweaks. Set +x on two scripts (so they can be run standalone), fix ↵Rob Landley
chgrp so it doesn't abort test all.
2012-09-08Add switch_root and fix infrastructure to understand name "switch_root".Rob Landley
2012-08-25Teach build to compare toys/*/*.c against .config symbol names instead of ↵Rob Landley
stopping at first _ when assembling list of files to build, and convert - to _. This lets us have commands like switch_root or nbd-client.
2012-08-25Move commands into "posix", "lsb", and "other" menus/directories.Rob Landley
2012-07-21More web page roadmap/status update stuff.Rob Landley
2012-07-21Add status.html and script to calculate it from roadmap info.Rob Landley
2012-07-05- Do not abort testing after running the sort testsElie De Brauwer
- Add tail testcases for input not ending on a newline - Fix condition where input coming from stdin does not have a trailing newline
2012-06-24Work around a Bash bug that removes "." from the $PATH when you're root. ↵Rob Landley
(The FSF believes it knows better than you, and won't let you do things, in the name of Freedom.)
2012-06-23Add chgrp test.Rob Landley
2012-06-18Replace CCFLAGS with description of how to add flags to HOSTCC.Rob Landley
2012-06-11Multiplexer needs stayroot flag for suid handling.0.3.0Rob Landley
2012-05-23Probe available libraries to link --as-needed, avoiding "unknown libarary" ↵Rob Landley
errors.
2012-04-24Adding initial version of login.cElie De Brauwer
2012-04-14Teach make.sh to create flag macros, but with the wrong names. Dunno how to ↵Rob Landley
make a translation macro or #ifdef guard to get the names right so they actually be _used_ yet...
2012-03-19Have probe for unshare test for actual unshare() function in libc.Rob Landley
2012-03-12Redo tail to use optargs and optionally support lseek. Add support to ↵Rob Landley
optargs and llist.c, plus add a test suite entry. Still no -f support though.
2012-03-06Comment and whitespace tweaks.Rob Landley
2012-03-04Fix build on slackware-current.Georgi Chorbadzhiyski
2012-03-03Fix from Georgi Chorbadzhiyski to make cross compiling more robust.0.2.1Rob Landley
2012-03-02Cleanup pass, and support unrecognized slash chars ala "echo -e \p".Rob Landley
2012-02-23Don't mix the the probed symbols with the command symbols.Rob Landley
2012-02-21Replace GPL python debug script with BSD shell script.Rob Landley
2012-02-08Add tests for cmp.Timothy Elliott
Still needs to handle directories properly and needs padding for -l output.
2012-02-17Add V=1 support to make.Rob Landley
2012-02-13Minor code cleanup and typo fix.Rob Landley
2012-02-12Add test for basename, fix issue where suffix is wrongfully applied if it ↵Elie De Brauwer
appears in the middle of the filename
2012-02-13The unshare test needs $CC defined, source configure to get it.Rob Landley
2012-02-10Add tests for headTimothy Elliott
This exposed one issue in head.c -- printf was not flushing and file names could appear after file contents instead of before. The issue is fixed by calling xflush after xprintf.
2012-02-11Fix overflow in octal formatting in echo, add support for hexadecimal input, ↵Elie De Brauwer
add tests for octal and hexadecimal formatting
2012-02-11Add tests for cksumElie De Brauwer
2012-02-06Bugfix for -x, add CONFIG_SORT_FLOAT, and new test suite entry.Rob Landley
2012-02-03Add autodetect for container support.Rob Landley
2012-02-02Test suite comment tweaks.Rob Landley
2012-01-30More work on xargs: bugfix and tests.Rob Landley
2009-12-13The "strip" in gcc 4.4 doesn't set the executable bit on its output, despite ↵Rob Landley
what SUSv4 says it should do, so cope with buggy FSF tools.
2009-12-13Let the minicom script take the speed as an optional second argument.Rob Landley
2009-01-30Convert non-bool config values (such as int) into config.h entries.Rob Landley
2009-01-30Re-wordwrap and reorder the .config->config.h sed script. (No real changes, ↵Rob Landley
just one command/line in a clearer order.)
2008-11-15Add netcat server mode, -l, -L, and -t.Rob Landley
2008-06-22Basic tests for sort. Needs more...Rob Landley
2008-06-22Cosmetic tweak, only show skipped tests when VERBOSE set.Rob Landley
2008-06-22Adjust "optional" function (gen_config.h became generated/config.h).Rob Landley
2008-05-17Add seq, and tests for it.Rob Landley
2008-05-17Fix command line option parsing so "echo -xen" actually prints "-xen". AddRob Landley
echo.test while I'm at it.
2008-05-12Sort was including the trailing comma and getting the order wrong.Rob Landley
(Specifically, it was comparing "sh," with "sha1sum," and putting sha1sum first in generated/newtoys.h so the binary search wasn't finding sha1sum. Alas, you can't feed separate beginning and ending delimiters to "sort -t". The fix is to copy the appropriate field out with sed, duplicate it at the start of the string where it's easy to compare, and then remove it again with a second sed after the sort.
2008-05-04More tweaks to rmdir.test and the testing infrastructure.Rob Landley
2008-05-04Add rmdir and test for it.Rob Landley
2008-05-04Teach run-all-tests mode to only test enabled commands.Rob Landley