Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-05-08 | Remove old uClibc compatibility glue. It's been 5 years since the last release. | Rob Landley | |
See http://lists.busybox.net/pipermail/buildroot/2016-December/180102.html for a full post-mortem on the project. | |||
2017-05-08 | Now that xopen() no longer returns stdio, !fd doesn't need strcmp("-") to verify | Rob Landley | |
2017-05-07 | Fix error in writing output that was causing zcat to always fail. | Mike Moreton | |
2017-05-07 | Error if we can't autodetect filesystem type. | Rob Landley | |
2017-04-30 | Android NDK doesn't have cutils/sched_policy.h so add a probed config symbol. | Rob Landley | |
2017-04-30 | Android needs -llog to link. | Elliott Hughes | |
2017-04-30 | Building mkpasswd on Android makes no sense. | Elliott Hughes | |
And won't work anyway because we don't have crypt(3). | |||
2017-04-30 | Implement zlib-based gzip/gunzip/zcat. | Elliott Hughes | |
2017-04-26 | Elliott wants to run the toybox tests on android host and there's an sh but | Rob Landley | |
it isn't toysh, so test for a bash alias. | |||
2017-04-25 | Forgot to check in one of the files for bzcat.test | Rob Landley | |
2017-04-24 | Another FAQ, and some related tweaks as long as I was there. | Rob Landley | |
2017-04-19 | Add ls -ll (with --full-time as a compatibility synonym) to show nanoseconds. | Rob Landley | |
(And, for some reason, timezone. Individual files have timezones?) | |||
2017-04-18 | The kernel needs bc to build because | Rob Landley | |
https://landley.net/notes-2013.html#28-03-2013 so add it to the airlock install. | |||
2017-04-17 | Use $(( rather than $[ for arithmetic in expand.test. | Elliott Hughes | |
I can't find any reference to $[ for arithmetic on the bash man page, but it seems to be a synonym for $((. mksh doesn't support this, so the expand tests that use it fail on Android. No other toybox tests are using $[. | |||
2017-04-17 | Make ls.test work without awk. | Elliott Hughes | |
2017-04-15 | Speed up tail.test for shells without builtin printf. | Elliott Hughes | |
The test only needs echo, and Android currently doesn't use mksh's builtin printf; the toybox printf is fuller featured and less buggy, but a lot slower to call in a loop like this (and mksh doesn't fall back to the printf on the path if given something it can't handle, so we can't have the best of both worlds). Without this hack, the tail test takes as long as all the other tests put together. | |||
2017-04-12 | Default to -b rather than -q when output is to a tty. | Rob Landley | |
2017-04-11 | Fix "make test_split". | Elliott Hughes | |
The test shouldn't assume there's a toybox binary on the path. | |||
2017-04-11 | Silence a broken warning by hitting it with a rock. | Rob Landley | |
2017-04-11 | Make fdisk buildable. | Elliott Hughes | |
The argument to help_exit is a char*, not a FILE*. | |||
2017-04-11 | Fix touch -a/-m (and add the missing tests). | Elliott Hughes | |
utimensat takes atime in [0] and mtime in [1], but since we're overwriting with UTIME_OMIT, we actually want to flip the comparison so -a blats 1 and -m blats 0. | |||
2017-04-10 | Add "uudecode -o -" support. | Elliott Hughes | |
busybox uudecode supports this, and POSIX explicitly mentions it (albeit only in the "STDOUT" section). Plus Android doesn't have /dev/stdout and /dev/stdin, so this lets us rewrite the uudecode tests so they pass on Android too. | |||
2017-04-08 | Fix the ls -m test (which is just a whitespace issue, but eh). | Rob Landley | |
While we're at it, ls -m wordwrap was one column early. | |||
2017-04-07 | Make renice.test work without awk. | Elliott Hughes | |
Also try to only kill processes we created. | |||
2017-04-07 | Remove mount.test awk dependency. | Elliott Hughes | |
Parsing file(1) output isn't a good way to determine file system type anyway. | |||
2017-04-07 | Make pgrep tests runnable on toybox-only systems. | Elliott Hughes | |
Also make the cleanup kill more focused. | |||
2017-04-07 | Make pkill tests runnable on a toybox-only system. | Elliott Hughes | |
Also use a much stricter regex in the regex test to avoid killing innocent bystanders. | |||
2017-04-07 | Make bzcat tests runnable on a toybox-only system. | Elliott Hughes | |
2017-04-04 | Add "testcmd" function as an alternative to "testing" for tests/*.test, and | Rob Landley | |
check in two converted commands. | |||
2017-04-03 | Fix ls -a and ls -A tests. | Elliott Hughes | |
2017-04-03 | Trivial cleanup. (Whitespace, brackets, and remove unnecessary typecasts.) | Rob Landley | |
2017-04-03 | Add gzip support. (Doesn't show source OS and timestamp, but reporting them | Rob Landley | |
isn't obviously useful.) | |||
2017-04-03 | Implement dmesg -T. | Elliott Hughes | |
Also refactor so that legacy mode gets all the new functionality too, and add -S to make it easier to test legacy mode on 3.5 or newer kernels (at least on the host; on Android the syslog(2) system call is no longer allowed). Bug: http://b/36090178 | |||
2017-03-28 | Don't try to implement %s, we have @seconds, strptime() in libc tends | Rob Landley | |
not to have it, and implementing our own means a pattern like "Time %%%s%%" is expensive to handle the corner cases of. | |||
2017-03-28 | New date range tests are simple, won't catch Feb 29 in non-leap-year | Rob Landley | |
(or April 31 in any year). Some normalization allowed, exclusions are just what http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/time.h.html says. | |||
2017-03-28 | Replace chkmktime() (which produces false positive normalization failures) | Rob Landley | |
with range checks for seconds, minutes, hours, day of month, and month. | |||
2017-03-28 | ps: don't query for terminal size if not a tty. | Josh Gao | |
`ps -A | cat` shouldn't have different output depending on the size of your terminal window. | |||
2017-03-27 | Fix the type of the callback in getprop. | Elliott Hughes | |
Fixes: toys/android/getprop.c:56:39: warning: incompatible pointer types passing 'void (void *, const char *, const char *)' to parameter of type 'void (*)(void *, const char *, const char *, uint32_t)' (aka 'void (*)(void *, const char *, const char *, unsigned int)') [-Wincompatible-pointer-types] __system_property_read_callback(pi, read_callback, NULL); ^~~~~~~~~~~~~ | |||
2017-03-24 | We grew a few more commands that weren't on the roadmap (mostly from android) | Rob Landley | |
so throw them in the "requests" category so they show up in status.html. | |||
2017-03-23 | Now that just about everything has --help, don't output help for argument errors | Rob Landley | |
2017-03-22 | Fix a typo and explain a mystery in news.html. | Elliott Hughes | |
2017-03-22 | Implement uptime -s. | Elliott Hughes | |
Also add trivial tests. | |||
2017-03-21 | dirtree_flagread() returns DIRTREE_ABORTVAL when the initial node doesn't | Rob Landley | |
exist, which can hit ps when /proc isn't there or /proc/$PID/task isn't there (because process exited between the time we checked its contents and the time we looked for its threads). | |||
2017-03-20 | Paste bugfix, more tests. | Rob Landley | |
2017-03-20 | Add TOYBOX_PEDANTIC_ARGS to check arguments when there are no arguments, | Rob Landley | |
and make uptime use it. | |||
2017-03-20 | Rewrite paste so it actually works. | Rob Landley | |
2017-03-04 | Another FAQ entry. | Rob Landley | |
2017-03-03 | FAQ tweak: one more link on toybox history. | Rob Landley | |
2017-03-03 | Check in web page announcement for 0.7.3. | Rob Landley | |
2017-02-21 | It's past time for 0.7.3.0.7.3 | Rob Landley | |