Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-04-08 | Add -- to "eval". | Rob Landley | |
If you ever do have a command name beginning with a -, eval won't run it by default, because even though it takes no arguments it tries to parse them anyway, so it complains it's an unrecognized argument. Solution: -- as first argument (which is parsed and stops argument parsing). | |||
2018-04-08 | Fix error message: update $NAME before complaining about test with wrong # args. | Rob Landley | |
2017-04-04 | Add "testcmd" function as an alternative to "testing" for tests/*.test, and | Rob Landley | |
check in two converted commands. | |||
2016-09-04 | make test_cmp caused the make invocation to exit with an error because the | Rob Landley | |
last test exited with nonzero status and the script preserved it. In the current context, that's counterproductive. | |||
2016-06-30 | Add NOSPACE=1 to allow tests to pass with diff -b | Rob Landley | |
2016-04-22 | Allow EVAL= to run test under a different shell (for sh.test) | Rob Landley | |
2016-03-02 | Factor out command name at the start of test name, have runtest.sh print it. | Rob Landley | |
2016-02-02 | Update to status.html and some test suite cosmetic tweaks. | Rob Landley | |
2015-06-25 | Suggestion from Elliott Hughes: tweak test infrastructure to notice if | Rob Landley | |
command exits with high errno and assume it segfaulted. | |||
2014-11-28 | When running a test, the diff is always an ascii diff, not binary. | Rob Landley | |
2014-11-14 | Add color support for scripts/test.sh and new SKIP_HOST for tests expected ↵ | Rob Landley | |
to fail on non-toybox implementations. | |||
2014-09-20 | Move testsuite out of scripts/test into its own top level tests directory, ↵ | Rob Landley | |
and make ctrl-c kill "make test" more reliably. |