1. 368e264 host needs -lresolv by Rob Landley · 10 years ago
  2. 298fcd9 Isaac Dunham also reported that some diff implementations can't handle nonseekable input, so write to a temporary file instead of <(command). by Rob Landley · 10 years ago
  3. 0fe882b Isaac Dunham pointed out that busybox diff only implements unified diffs, and sent a patch to convert bloatcheck to use that. I tweaked it a bit. by Rob Landley · 10 years ago
  4. 471c4d2 Replace large parenthetical in bloatcheck with a function. by Rob Landley · 10 years ago
  5. 8b3b9aa The tests for link and du are attached. by Isaac Dunham · 10 years ago
  6. 670626a cpio: archive more files by Isaac Dunham · 10 years ago
  7. 6c54928 Pass the same $CFLAGS to the library probe as the final build, to work with broken build environments that provide different libraries for --static and dynamic builds. by Rob Landley · 10 years ago
  8. 3be2e3e Teach singleconfig to switch on sub-options of commands it's building. by Rob Landley · 10 years ago
  9. 3a41541 Catch duplicate command name (which breaks the build already, but doesn't identify the culprit). by Rob Landley · 10 years ago
  10. f9070f3 Add example directory, move hello.c into it, add skeleton.c to demonstrate more complciated stuff (multiple commands per file, etc), and have genconfig.sh sort backwards so posix is first and example last in menuconfig. by Rob Landley · 10 years ago
  11. 5fe77cf As long as uClibc's still around and requires you to jump through hoops to get iconv(), probe and build defconfig without it if it's not there. by Rob Landley · 10 years ago
  12. 76e1cb3 Probe for the existence of FIFREEZE and make fsfreeze depend on it. by Rob Landley · 10 years ago
  13. 15027d6 Probes for O_NOFOLLOW that compile and run something aren't compatible with cross compiling, so just #define it to 0 if it's not in fcntl.h where posix-2008 says. by Rob Landley · 10 years ago
  14. 882ca8b _mkflags_ had an issue for generating FLAG_xxxx macros for long options. by Ashwini Sharma · 10 years ago
  15. e6314da generated/help.h is a lot easier to read with an extra newline between each help entry. by Rob Landley · 10 years ago
  16. 64f6164 There are cases when the long options are of the format abc-def. In current implementation FLAG_xxx macros are generated for long options too. with __-__ sign in the macro, it will generate errors. by Ashwini Sharma · 10 years ago
  17. fad38c7 Factor out mkpathat. by Rob Landley · 10 years ago
  18. 170c397 Fix header file generation to not be confused by empty (but non-NULL) option string. by Rob Landley · 10 years ago
  19. 6ebe03d Put all FOR_xxx blocks after all CLEANUP_xxx in generated/flags.h so the usages don't have to be in alphabetical order. by Rob Landley · 10 years ago
  20. e36a9dd CLEANUP transitions require all the generated/flags.h stanzas always be present (even for commands disabled in the config) to avoid undefined symbol errors referencing FLAG_ macros. by Rob Landley · 10 years ago
  21. 7dbb982 Update status page. by Rob Landley · 10 years ago
  22. a235901 Make CLEANUP transitions work, so multiple NEWTOY() can exist in the same file. by Rob Landley · 10 years ago
  23. 1fb3ae7 Various cleanups found by Tom Sparrow's static analysis. by Rob Landley · 10 years ago
  24. 5a2583a Fix segfault with single build of a command with bare longopts. by Rob Landley · 10 years ago
  25. 0e040df Use right config for single builds. by Rob Landley · 10 years ago
  26. 0432050 More elaborate help text collating logic. by Rob Landley · 10 years ago
  27. c049bca Collate usage: lines in help text. by Rob Landley · 11 years ago
  28. 2ded833 Help text, collate usage blocks (badly). by Rob Landley · 11 years ago
  29. 86cafe1 Replace python help converter with C implementation. by Rob Landley · 11 years ago
  30. 46c8069 Cosmetic tweak. by Rob Landley · 11 years ago
  31. 712b125 Clean up half-finished blkid.test. by Rob Landley · 11 years ago
  32. bb5cfb2 Older python spit --version to stdout, 2.7 does it to stderr. Of course. by Rob Landley · 11 years ago
  33. 0201900 Regression test against Ancient Build Environment (Ubuntu 8.04), fixup bit-rot. by Rob Landley · 11 years ago
  34. ed9eac3 Ashwini Sharma added -v, I tweaked it a bit and added a couple test suite entries. by Rob Landley · 11 years ago
  35. 75cb924 Add test suite for blkid and clean up an editorial comment that shouldn't have been checked in. by Rob Landley · 11 years ago
  36. dcf52cb Remove leftover debris from scripts/test.sh that screws up single tests with single.sh. by Rob Landley · 11 years ago
  37. cc1d6e3 Filesystem images for testing blkid, from Bradley Conroy. by Rob Landley · 11 years ago
  38. 2baa73f Promote nl from pending to posix, and add tests. by Rob Landley · 11 years ago
  39. 73fff3b Don't use $CC without $CROSS_COMPILE because $HOSTCC could be something else entirely. by Rob Landley · 11 years ago
  40. 26f52eb Teach scripts/test.sh to call scripts/single.sh. by Rob Landley · 11 years ago
  41. 207cada Switch flag generation from shell to C. by Rob Landley · 11 years ago
  42. 75a1815 Fix generated/oldtoys.h to contain option strings with USE() macros in them. by Rob Landley · 11 years ago
  43. 9b9a1ef First pass of cut cleanup, and make test script slightly happier with the concept of 80 character lines. by Rob Landley · 11 years ago
  44. bb215e4 Adjust patch to use dlist_pop() by Rob Landley · 11 years ago
  45. 5f57bcc Redo tail closer to the original design. Add more tests for large data sets. (Still no -f support yet.) by Rob Landley · 11 years ago
  46. 21d4d71 Allow shipped generated/help.h to still be used, until I rewrite the generator in C. by Rob Landley · 11 years ago
  47. eee90c0 make.sh: Fix probing for python2.x and be verbose in error reporting by Elie De Brauwer · 11 years ago
  48. 314dc68 Make chdir handle permissions according to posix, reported by Jacek Bukarewicz.. by Rob Landley · 11 years ago
  49. 408d4f2 Implement ls --color=auto, suggested by Rich Felker. by Rob Landley · 11 years ago
  50. c166faf Update status and roadmap pages, and status page generator script. by Rob Landley · 11 years ago
  51. d04dc1f Add scripts/single.sh to build individual non-multiplexed standalone commands. by Rob Landley · 11 years ago
  52. fce85e9 Finish grep rewrite and fleshing out test suite. Several of the grep tests fail with the ubuntu version, I _think_ these are upstream bugs? (Second opinions welcome...) by Rob Landley · 11 years ago
  53. 427f19c cut tests from Kyungwan Han. by Rob Landley · 11 years ago
  54. 9f088a1 More grep tests, remove obsolete comment. by Rob Landley · 11 years ago
  55. dd2d239 More grep cleanup, and make OPTSTR_command macros for use with OLDTOY() by Rob Landley · 11 years ago
  56. 133cc5b More grep tests. by Rob Landley · 11 years ago
  57. 7b72ab4 Fluff out grep test suite some more, including lots of things we don't pass yet. by Rob Landley · 11 years ago
  58. 3595eff Clean up grep.test to use "infile" properly, and not try to work around the $PATH behavior of scripts/test.sh. Tested with both TEST_HOST=1 and normal. by Rob Landley · 11 years ago
  59. 577377c I add testsuite for grep. by Ashwini Sharma · 11 years ago
  60. 7c9d6ce Juhani Haverinen pointed out that python 3 doesn't work with config2help.py, so you python2 binary until finishing the C rewrite. by Rob Landley · 11 years ago
  61. a6b99ef Implement test by Felix Janda · 11 years ago
  62. 5e56568 Don't make a FLAG_ macro for " ", it's a control character, doing so throws the indexes off. Reported by Ashwini Sharma. by Rob Landley · 11 years ago
  63. 3a489e4 Generate FLAG_longopt macros for --longopts with no corresponding short option. by Rob Landley · 11 years ago
  64. 55ec010 Test cases for split. by Rob Landley · 11 years ago
  65. 5b25105 Upgrade modinfo to support multiple modules, and add tests, from Isaac Dunham. by Rob Landley · 11 years ago
  66. 32526f2 Start of expr, by Daniel Verkamp. by Rob Landley · 11 years ago
  67. 8d9b9ca Tests for touch (needs more work). by Rob Landley · 11 years ago
  68. ee492df Tests for losetup. by Rob Landley · 11 years ago
  69. 45084bd generated/help.h depends on CONFIG_TOYBOX_HELP by Felix Janda · 11 years ago
  70. b3d4f0b The host sort on many distros behaves stupidly, and sorts stuff in non-ascii order by default. Make it stop. by Rob Landley · 11 years ago
  71. 7d4d0a0 Quick sniff test to find leaked global variables. by Rob Landley · 11 years ago
  72. ac1d20a Make genconfig use CFLAGS because building against a libc that isn't installed on the host may need --static to run the results. by Rob Landley · 11 years ago
  73. a842335 Add tests for find's expression parsing by Felix Janda · 11 years ago
  74. a77f36d Change uuencode test to match what other uuencode implementations actually produce. by Rob Landley · 11 years ago
  75. f597042 Incremental cleanup of uudecode. by Rob Landley · 11 years ago
  76. 3e06a1c uudecode test should just call "uudecode" (not multiplexer via a path), and first test shouldn't succeed if toybox isn't even there. by Rob Landley · 11 years ago
  77. 64427a8 uuencode/decode tests and tweaks from Erich Plondke. by Rob Landley · 11 years ago
  78. 25b043b Compile time probe to fish O_NOFOLLOW out of linux headers when fcntl doesn't conform to posix-2008. by Rob Landley · 11 years ago
  79. 9a69a92 Accumulated web page changes. (Release announcement for previous release, roadmap updates, etc.) by Rob Landley · 11 years ago
  80. d1fcf4f Tweak cmp test to be a little more deterministic. by Rob Landley · 11 years ago
  81. 3a99aef Switch readlink on by default, and fill out readlink.test. by Rob Landley · 12 years ago
  82. 41ed979 Use basename() where appropriate. by Rob Landley · 12 years ago
  83. 840ed12 Add some tests for pwd. by Felix Janda · 12 years ago
  84. 63e042c Add tests to mkfifo based on tests for mkdir. by Felix Janda · 12 years ago
  85. c5b15db Add some tests for mkdir by Felix Janda · 12 years ago
  86. 434d351 Extend seq to support -f (format string) and -s (string separator) as requested by LSB by Elie De Brauwer · 12 years ago
  87. de08aef Fix tac to handle the "abc\ndef" case properly by Elie De Brauwer · 12 years ago
  88. 7a78d92 Update mkstatus.py, roadmap.html, and status.html. by Rob Landley · 12 years ago
  89. fadbd60 Adding implementation of rev including tests by Elie De Brauwer · 12 years ago
  90. e9e10b5 Adding tests for tac based on cat tests by Elie De Brauwer · 12 years ago
  91. b1c002a Add stat submission to new "pending" directory, along with infrastructure to support pending. by Rob Landley · 12 years ago
  92. d394a1f Set executable bits on two test scripts. by Rob Landley · 12 years ago
  93. 2a55ccb Adding sha1sum tests based on RFC 3174 by Elie De Brauwer · 12 years ago
  94. 6c57628 Adding tests for cat by Elie De Brauwer · 12 years ago
  95. aa777fe Add README file to each toys/ directory, teach build infrastructure to get fancy name from that. This means adding new directories shouldn't require touching build scripts. by Rob Landley · 12 years ago
  96. e0cc81e Generate status page with new pubs.opengroup.org urls. by Rob Landley · 12 years ago
  97. f637976 Re-add backspace support to expand (oops) and fix test to expect data plus backspace characters rather than the chracters cancelling each other out before output. by Rob Landley · 12 years ago
  98. 4d904aa md5sum tests from RFC 1321 by Rob Landley · 12 years ago
  99. 80aab26 Use the specified compiler for preprocessing. by Rob Landley · 12 years ago
  100. ab52d02 expand: handle backspace. by Jonathan Clairembault · 12 years ago