Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-08-04 | echo: fix trailing \0. | Elliott Hughes | |
This is a follow-on from 310eefe, addressing the case where sscanf fails and returns -1. | |||
2020-08-03 | Mark Salyzyn implemented support for xargs -P (run parallel jobs) because he | Rob Landley | |
has a build script that goes much faster with it, and added tests for it. I reimplemented it a different way, and did SIGUSR1 and SIGUSR2 support. | |||
2020-07-30 | find: support -type a,b,c. | Elliott Hughes | |
Fixes #227. | |||
2020-07-20 | patch fuzz: Always output original file's ' ' context lines, not from hunk. | Rob Landley | |
2020-06-27 | The bionic/clang asan plumbing slows the test down >10x, so expand timeout. | Rob Landley | |
2020-06-23 | William Djupström reported tar --exclude wasn't working. Fix and add test. | Rob Landley | |
(Also fix -v output going to stderr when it shouldn't.) | |||
2020-06-23 | More sh tests. | Rob Landley | |
2020-06-19 | More sh tests | Rob Landley | |
2020-06-18 | More shell tests. | Rob Landley | |
2020-06-16 | file: add GIF version information. | Elliott Hughes | |
This let me compare against the host for #225. | |||
2020-06-16 | Ryan Prichard reported that file wasn't getting gif heights right. | Rob Landley | |
2020-06-14 | Fix test not to use shell builtin. | Rob Landley | |
2020-06-09 | chmod: fix -R and dangling symlinks. | Elliott Hughes | |
Found trying to run the libc++ tests. For coreutils, `info chmod` says: 'chmod' ignores symbolic links encountered during recursive directory traversals. Bug: http://b/155809792 | |||
2020-06-09 | Tests for tar memory fix. | Rob Landley | |
2020-06-08 | Add tar test for long filenames. | Rob Landley | |
2020-06-01 | Fix tests. | Rob Landley | |
Includes removing a test that's just gratuitously checking whether or not a corner case gratuitously differs from coreutils. (So what? Who cares?) | |||
2020-05-29 | Replace more SKIP_HOST with toyonly. | Rob Landley | |
SKIP_HOST won't run a test when TEST_HOST set, but toyonly runs its arguments whenever testing toybox (including when the host version is toybox). | |||
2020-05-29 | Annotate sed tests with toyonly. | Rob Landley | |
2020-05-29 | Add tests for sed -s | Rob Landley | |
2020-05-26 | Fix syntax checking for "if true; then echo hello | fi", fix some tests, | Rob Landley | |
slightly more elaborate debug output. | |||
2020-05-26 | More sh tests. | Rob Landley | |
2020-05-23 | Ahem: have the backgrounding test actually background. | Rob Landley | |
Point is to make sure the consumer waits for all output, not for process exit. | |||
2020-05-23 | More shell tests. | Rob Landley | |
2020-05-13 | Massage TEST_HOST test output (coreutils?) to match toybox. | Rob Landley | |
2020-05-13 | toyonly a test binutils lies about, and add a TODO comment. | Rob Landley | |
2020-05-13 | More tests that don't pass TEST_HOST. (The file one is checking for | Rob Landley | |
overly-specific output again.) | |||
2020-05-13 | More TEST_HOST failures. | Rob Landley | |
2020-05-13 | Checking for specific error messages makes TEST_HOST unreliable. | Rob Landley | |
2020-05-11 | More shell tests. | Rob Landley | |
2020-05-03 | Next round of shell work. | Rob Landley | |
2020-04-30 | Yet more shell test tweaks. | Rob Landley | |
2020-04-28 | Replace a SKIP_HOST with toyonly. | Rob Landley | |
2020-04-27 | Redo toysh variable expansion plumbing to start ${} (variable expansion can | Rob Landley | |
now return error), inline utf8spnc and merge_arg(), unify "break" logic, fix "continue" and "done; done", fix cd not to expand arguments twice | |||
2020-04-24 | More shell tests. | Rob Landley | |
2020-04-16 | Yet more shell tests. | Rob Landley | |
2020-04-15 | Echo tests for new unescape2() functionality. | Rob Landley | |
2020-03-29 | file: add 7z test file | Joeky | |
2020-03-28 | sed s///: support POSIX I as synonym for i | Elliott Hughes | |
POSIX chose I rather than i as the case-insensitive flag for s///, because apparently more seds support I than i. We're allegedly alone in only supporting i. (On the Mac, sed supports neither.) Strictly this isn't *currently* in POSIX, but it's been accepted for issue 8. Bug: https://austingroupbugs.net/view.php?id=779#c2050 | |||
2020-03-23 | tar: implement --absolute-names. | Elliott Hughes | |
Used by the Linux kernel build when copying kernel headers to kernel-headers.tar.gz. Bug: http://b/152244851 | |||
2020-03-13 | More sh tests. | Rob Landley | |
2020-03-10 | modinfo: various fixes. | Elliott Hughes | |
I came here because the new -Wno-unreachable-code-loop-increment warning didn't like the for loop on line 86. That loop is indeed not necessary. Use strend() to do a string suffix match. Use memmem() to search. It's available on macOS and Android by default, but it's behind _GNU_SOURCE for glibc, so add that to portability.h. Output the tags in the same order as the Debian modinfo. I've left "parmtype" in even though the Debian modinfo doesn't output it at all. Also fix the tests so that they work on a device that has modules for multiple kernels installed (like my laptop) --- make sure that the two modules we pick come from the same kernel. | |||
2020-03-08 | cp: fix -D (--parents) (REWORK MINIMAL FIX) | Jarno Mäkipää | |
add: test for -D fix: b/c/d/FILE not copying into a/ with -D option dirname() is not needed when handling FLAG(D) since filename under src or dest should not be changed. github.com/landley/toybox/issues/165 | |||
2020-03-06 | Yet more shell tests. | Rob Landley | |
2020-03-01 | readelf: various fixes. | Elliott Hughes | |
Add -e, and stop documenting no-op -W. Fix sign issues, and add a few extra sanity checks. Redo the BE/LE 16/32/64 reading. Remove the NOSPACE=1 from the -l test, and fix the -l code to match the binutils output. Most usefully, this fixes the weird way the NULL section's empty name would cause misalignment in the section to segment mapping output. Add a test for -s (symbol table). | |||
2020-02-29 | Fix a couple of shell tests. | Elliott Hughes | |
These didn't work on a system where readlink is a symlink to toybox, ironically. | |||
2020-02-29 | More shell tests. | Rob Landley | |
2020-02-26 | More sh tests. | Rob Landley | |
2020-02-25 | Shell ! tests | Rob Landley | |
2020-02-17 | More sh tests. | Rob Landley | |
2020-02-14 | Tests for upcoming sh plumbing. | Rob Landley | |