aboutsummaryrefslogtreecommitdiff
path: root/scripts
AgeCommit message (Collapse)Author
2013-06-22Generate FLAG_longopt macros for --longopts with no corresponding short option.Rob Landley
2013-06-16Test cases for split.Rob Landley
2013-06-16Upgrade modinfo to support multiple modules, and add tests, from Isaac Dunham.Rob Landley
2013-06-05Start of expr, by Daniel Verkamp.Rob Landley
2013-05-27Tests for touch (needs more work).Rob Landley
2013-05-27Tests for losetup.Rob Landley
2013-04-30generated/help.h depends on CONFIG_TOYBOX_HELPFelix Janda
2013-04-29The host sort on many distros behaves stupidly, and sorts stuff in non-ascii ↵Rob Landley
order by default. Make it stop.
2013-04-26Quick sniff test to find leaked global variables.Rob Landley
2013-04-16Make genconfig use CFLAGS because building against a libc that isn't ↵Rob Landley
installed on the host may need --static to run the results.
2013-04-14Add tests for find's expression parsingFelix Janda
2013-03-28Change uuencode test to match what other uuencode implementations actually ↵Rob Landley
produce.
2013-03-27Incremental cleanup of uudecode.Rob Landley
2013-03-27uudecode test should just call "uudecode" (not multiplexer via a path), and ↵Rob Landley
first test shouldn't succeed if toybox isn't even there.
2013-03-22uuencode/decode tests and tweaks from Erich Plondke.Rob Landley
2013-03-11Compile time probe to fish O_NOFOLLOW out of linux headers when fcntl ↵0.4.4Rob Landley
doesn't conform to posix-2008.
2013-02-23Accumulated web page changes. (Release announcement for previous release, ↵Rob Landley
roadmap updates, etc.)
2013-02-04Tweak cmp test to be a little more deterministic.Rob Landley
2013-01-17Switch readlink on by default, and fill out readlink.test.Rob Landley
2013-01-05Use basename() where appropriate.Rob Landley
2012-12-28Add some tests for pwd.Felix Janda
2012-12-27Add tests to mkfifo based on tests for mkdir.Felix Janda
2012-12-23Add some tests for mkdirFelix Janda
2012-12-16Extend seq to support -f (format string) and -s (string separator) as ↵Elie De Brauwer
requested by LSB
2012-12-22Fix tac to handle the "abc\ndef" case properlyElie De Brauwer
2012-12-23Update mkstatus.py, roadmap.html, and status.html.Rob Landley
2012-12-16Adding implementation of rev including testsElie De Brauwer
2012-12-15Adding tests for tac based on cat testsElie De Brauwer
2012-12-10Add stat submission to new "pending" directory, along with infrastructure to ↵Rob Landley
support pending.
2012-12-09Set executable bits on two test scripts.Rob Landley
2012-12-08Adding sha1sum tests based on RFC 3174Elie De Brauwer
2012-12-08Adding tests for catElie De Brauwer
2012-12-08Add README file to each toys/ directory, teach build infrastructure to get ↵Rob Landley
fancy name from that. This means adding new directories shouldn't require touching build scripts.
2012-12-01Generate status page with new pubs.opengroup.org urls.Rob Landley
2012-12-01Re-add backspace support to expand (oops) and fix test to expect data plus ↵Rob Landley
backspace characters rather than the chracters cancelling each other out before output.
2012-11-28md5sum tests from RFC 1321Rob Landley
2012-11-28Use the specified compiler for preprocessing.Rob Landley
2012-11-23expand: handle backspace.Jonathan Clairembault
2012-11-23Add expand command as described in POSIX-2008.Jonathan Clairembault
Erratum: Do not handle backspace.
2012-11-26Cleanup i18n support (#ifdefectomy, move global init to process launch). ↵Rob Landley
Teach make.sh to emit "#define FLAG_x 0" for options inside disabled USE macros so we can unconditionally refer to them.
2012-11-21Make internalization support optionalFelix Janda
2012-11-19Teach option parsing about [groups] of related options.Rob Landley
2012-11-13Reindent to two spaces per level. Remove vi: directives that haven't worked ↵Rob Landley
right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style. The actual code should be the same afterward, this is just cosmetic refactoring.
2012-11-08wc -m only cares about counting characters. Attached is a try on ↵Felix Janda
implementing it and some test cases for it. The test cases are only for UTF-8 locales.
2012-10-29attached are some simple tests for dirname and wc and a fix for a small typo ↵Felix Janda
in another test script.
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.