aboutsummaryrefslogtreecommitdiff
path: root/scripts
AgeCommit message (Collapse)Author
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
2008-05-04Remove extraneous output.Rob Landley
2008-05-04Very simple cat tests, with more test ideas commented out.Rob Landley
2008-03-28Update help, move test.sh to scripts, and fix "make test" to call right script.Rob Landley
2008-03-26Another cp -r fix, another test case...Rob Landley
2008-03-25Update cp -r to work better, add relevant tests to test suite.Rob Landley
2008-02-24Add an install script, with --long --symlink --force and --uninstall options.Rob Landley
2008-02-23Remove some commented out code.Rob Landley
2008-02-20Add first pass at cp, totally untested, unlikely to work yet. :)Rob Landley
2008-02-16Start of tests for cp.Rob Landley
2008-01-30Script from Roberto Foglietta to do config2help in bash instead of python.Rob Landley
2008-01-25Die on compilation or stripping failureCharlie Shepherd
2008-01-22Sort newtoys.h by command name, not by USE_ macro.Rob Landley
2008-01-20Fluff out hello.c to supply more example code as a skeleton for new commands,Rob Landley
and update a chunk of code.html (much more to do there).
2008-01-20Zap toylist.h, moving contents of global structures into DEFINE_GLOBALS()Rob Landley
macros in each C file, and making generated/globals.h from that. Rename "toy" to "this" along the way to avoid toy/toys confusion.
2008-01-19Move NEWTOY() list from end of toylist.h to generated/newtoys.h.Rob Landley
2008-01-19Zap toys/Config.in and instead create generated/Config.in from contents ofRob Landley
toys/*.c. Move relevant info into comment at the top of each toys/*.c. Also convert more of Makefile into a thin wrapper around shell scripts that actually do the work. (Makefile is only still there for the user interface.)
2007-12-17minicom.sh should check for a char device, not a file.Rob Landley
2007-12-16A couple more readlink tests.Rob Landley
2007-12-16Tweak testing.sh so VERBOSE=1 is less noisy.Rob Landley
2007-12-16Script to use stty with netcat -f to talk to a serial port.Rob Landley
2007-12-15Basic tests for readlink.Rob Landley
2007-11-15Remove trailing whitespace (thanks to Charlie Shepherd), and a couple commentRob Landley
tweaks.
2007-08-29Add "help" command. (Building help/help.h requires python, but I'll shipRob Landley
that file with release versions.)
2007-06-18Fix makefile to defconfig properly, and leak in a bit of the new test0.0.3Rob Landley
infrastructure so I don't have to revert it to check this in. :)
2007-02-18An old test suite wrapper I wrote, cleaned up a bit and checked for copyrights.Rob Landley
2007-01-31Missing comma, and slight simplification in defconfig sed invocation.Rob Landley
2007-01-31Add make install_flat.Rob Landley
2006-11-26Add bloat-o-meter, make bloatcheck, and scripts/showasm.Rob Landley