Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-09-02 | disable t3, it is known to fail | Otto Moerbeek | |
2016-09-01 | Make this work both with and without "make obj" in src/usr.bin/mandoc; | Ingo Schwarze | |
suggested by bluhm@ | |||
2016-09-01 | no more sparc; | Jason McIntyre | |
2016-08-30 | Test handling of invalid pointers in the pages table. | Ingo Schwarze | |
In such cases, do not access NULL pointers in dbm_dump. Make the setup in the run/Makefile a bit more systematic. Output starts getting too long, so make everything silent; you can always use "make -dl" to debug specific tests. | |||
2016-08-28 | typo | Ingo Schwarze | |
2016-08-28 | I don't dare to provide an OK for a rewrite of this program | Ingo Schwarze | |
without having at least some systematic testing in place. | |||
2016-08-27 | some updates for recent changes. | Ted Unangst | |
not all tests passing yet since i don't really understand what's going on. | |||
2016-08-23 | add tests for addr_match_list() | Damien Miller | |
2016-08-23 | remove Protocol directive from client/server configs that causes | Damien Miller | |
spammy deprecation warnings hardcode SSH_PROTOCOLS=2, since that's all we support on the server now (the client still may support both, so it could get confused) | |||
2016-08-20 | When a mismatching end macro occurs while at least two nested blocks | Ingo Schwarze | |
are open, all except the innermost open block got a bogus MDOC_ENDED marker, in some situations triggering segfaults down the road which tb@ found with afl(1). Fix the logic error by figuring out up front whether an end macro has a matching body, and if it hasn't, don't mark any blocks as broken. | |||
2016-08-20 | When scanning upwards for a column list to put a .Ta macro in, | Ingo Schwarze | |
ignore body end markers of lists breaking other blocks. Fixing a logical error that caused a NULL deref found by tb@ with afl(1). | |||
2016-08-20 | If a column list starts with implicit rows (that is, rows without .It) | Ingo Schwarze | |
and roff-level nodes (e.g. tbl or eqn) follow, don't run into an assertion. Instead, wrap the roff-level nodes in their own row. Issue found by tb@ with afl(1). | |||
2015-01-29 | reorg tbl(7) test suite | Ingo Schwarze | |
2016-08-19 | add tests for matching functions | Damien Miller | |
2016-08-10 | no more armish; | Jason McIntyre | |
2016-08-10 | regression tests for mdoc_validate.c revisions 1.219 and 1.220 | Ingo Schwarze | |
2016-08-06 | Add more tests for better code coverage: | Theo Buehler | |
What happens if begin and end are reversed? What if they are equal? While there, add a few comments on the purpose of the tests. | |||
2016-08-06 | If you see code like this, you know something's quite wrong | Theo Buehler | |
(present in some form since r1.1, still present in r1.31): 229 case 013: 230 if (randomize) 231 begin = BEGIN_DEF; 232 else if (reps == 0) 233 errx(1, "Must specify begin if reps == 0"); 234 begin = ender - reps * s + s; Add two tests that check for the intended behavior. | |||
2016-08-05 | enable the mandoc.db(5) regression suite, code is stable enough now | Ingo Schwarze | |
2016-08-05 | adjust expected output after the NAME_HEAD fix in mandocdb.c rev. 1.175 | Ingo Schwarze | |
2016-08-05 | enable dddd regression test | Theo Buehler | |
2016-08-04 | adjust database file name and version number to what was committed | Ingo Schwarze | |
2016-07-30 | hook up regression tests for jot(1) | Theo Buehler | |
2016-07-30 | Add regression tests for jot(1). | Theo Buehler | |
Adapted from FreeBSD's test suite by attila () stalphonsos ! com. Minor tweaks: * make tests work properly with 'make obj' and setting VERBOSE * add 10 tests checking some examples in our man page * disable the dddd test for now since it loops forever Besides dddd, the following five tests fail: dhhd dhhd2 wp3 wp4 wp5 Suggested fixes for these are on tech@ Many thanks to attila for doing the hard work! | |||
2016-07-30 | test suite for the new mandoc.db(5) format; | Ingo Schwarze | |
will be enabled after committing in src/usr.bin/mandoc | |||
2016-07-14 | Correct equal in test. | Darren Tucker | |
2016-07-04 | DEBUGLIBS has been broken since the gcc4 switch, so delete it. CFLAGS | Philip Guenther | |
contains -g by default anyway problem noted by Edgar Pettijohn (edgar (at) pettijohn-web.com) ok millert@ kettenis@ deraadt@ | |||
2016-06-07 | Replace (remaining) systrace policy files with columns of numbers for | Okan Demirmen | |
the tab spacing regression test; from Ray Lai. | |||
2016-06-03 | Add a test for ssh(1)'s config file parsing. | Darren Tucker | |
2016-06-03 | Add 'sshd' to the test ID as I'm about to add a similar set for ssh. | Darren Tucker | |
2016-05-31 | Replace most of the tests based on systrace output; from Ray. | Okan Demirmen | |
2016-05-30 | Some tests for \<; will be fixed by martijn@'s upcoming commit to process.c | Ingo Schwarze | |
2016-05-30 | stricter malloc.conf(5) options for utf8 tests | Ingo Schwarze | |
2016-05-30 | Fix two rare edge cases: | Ingo Schwarze | |
1. If vasprintf() returns < 0, do not access a NULL pointer in snmprintf(), and do not free() the pointer returned from vasprintf() because on some systems other than OpenBSD, it might be a bogus pointer. 2. If vasprintf() returns == 0, return 0 and "" rather than -1 and NULL. Besides, free(dst) is pointless after failure (not a bug). One half OK martijn@, the other half OK deraadt@; committing quickly before people get hurt. | |||
2016-05-26 | test the new utf8 module | Ingo Schwarze | |
2016-05-23 | UTF-8 support. | Ingo Schwarze | |
Using feedback about bugs in earlier versions from Matthew Martin <phy1729 at gmail dot com> and from tsg@ who tested it with afl(1). OK czarkoff@ tsg@ | |||
2016-05-13 | no more hppa64; | Jason McIntyre | |
2016-05-03 | Fix test after changing default column size from 60 to 80. | Martijn van Duren | |
OK bentley@ | |||
2016-05-03 | These tests depended on whatever the user's locale was, | Ingo Schwarze | |
and the last one failed for LC_CTYPE=C. Instead, ignore the user's locale and run each test twice, once for UTF-8 and once for US-ASCII. Problem reported by deraadt@. | |||
2016-05-03 | Regression tests for fold(1). | Ingo Schwarze | |
The lines containing SKIPUTF8 will be removed once the utility is fixed. | |||
2016-05-03 | Set umask to prevent "Bad owner or permissions" errors. | Darren Tucker | |
2016-05-03 | support doas | Damien Miller | |
2016-05-03 | unit tests for sshbuf_dup_string() | Damien Miller | |
2016-05-03 | Use a subshell for constructing key types to work around different sed | Darren Tucker | |
behaviours for -portable. | |||
2016-05-02 | unit and regress tests for SHA256/512; ok markus | Damien Miller | |
2016-05-01 | Add a test for pstring (a QDOS executable header). | Nicholas Marriott | |
2016-05-01 | BE ELF object (just the header); also trim the LE object to just the | Nicholas Marriott | |
header as well. | |||
2016-05-01 | pcap file test (header of file only). | Nicholas Marriott | |
2016-05-01 | Remove some unnecessary comments and t23 which has been disabled forever. | Nicholas Marriott | |
2016-05-01 | Add a PPM file test (truncated to just the header so it is text only). | Nicholas Marriott | |