summaryrefslogtreecommitdiff
path: root/regress
AgeCommit message (Collapse)Author
2014-01-22Implement the \: (optional line break) escape sequence,Ingo Schwarze
documented in the Ossanna-Kernighan-Ritter troff manual and also supported by groff. Missing feature reported by Steffen Nurpmeso <sdaoden at gmail dot com>.
2014-01-22There can be resolution-worth of slop in two places, so accept thatPhilip Guenther
2014-01-22Missing #includePhilip Guenther
2014-01-20append to rather than truncating the log fileDarren Tucker
2014-01-19Don't use -q on sftp as it suppresses logging, instead redirect the output toDarren Tucker
the regress logfile.
2014-01-19update extra output, error messages are more specific nowMarc Espie
2014-01-18Remove -Wbounded: it is now the compiler default.Martynas Venckus
2014-01-13update for new options and clarifyTed Unangst
2014-01-10Don't overwrite the regress target, provide a test target instead. This allowsTobias Ulmer
the test target to fail without terminating overall regression tests. Clean up a little. Also adjust orders.txt.sig comment to new reality, making the test pass again. Looks ok to sthen@
2014-01-10Use arc4random instead of random in the flock regress tests.Joel Sing
ok deraadt@
2014-01-10Make this work on hppa.Joel Sing
2014-01-10Do not include MD assembly code in a sys regress test. Untested on alpha,Joel Sing
however it has a much better chance of compiling than it did previously.
2014-01-09update for sig commentsTed Unangst
2014-01-09test signing tooTed Unangst
2014-01-09signify subdirTed Unangst
2014-01-09regress signifyTed Unangst
2014-01-08Fix the tests for the pf divert state and socket reuse.Alexander Bluhm
2014-01-08Set socket buffer size to fixed value of 100000 octets. ThisAlexander Bluhm
prevents that the socket splicing performance test interferes with the dynamic TCP buffer size adjusting.
2014-01-06add a proper test for error message location as well.Marc Espie
trim excess copy&paste from former targets
2014-01-06turn mk34 into a proper full-fledged test.Marc Espie
forgot to link t37 into the build
2014-01-04accept [0-9]lua as a valid section name (netbsd only);Jason McIntyre
from wiz@netbsd
2014-01-04to do: this is a fatal error, we want a decent error messageMarc Espie
2013-12-30Test mdoc_macro.c rev. 1.83.Ingo Schwarze
2013-12-29- Verify that the FPU exception flags weren't clobbered as required by C99.Martynas Venckus
- Additionally, test _setjmp and sigsetjmp as implementations are different.
2013-12-29Add a regression test to verify that the FPU control word state isMartynas Venckus
preserved by setjmp. Currently under REGRESS_FULL as this fails on certain archs.
2013-12-28- adjust getcwd-1.c.exp.gcc{3,4} after the getwd linker warning got addedMartynas Venckus
- adjust gcc-builtins to use the same approach as gcc-bounds - enable gcc-bounds and gcc-builtins in the default regression suite now that everything passes
2013-12-28Add regression tests to check whether GCC folds unsafe builtins andMartynas Venckus
actually shows the security warning. Also add some other cases where GCC used to yield the warning but shouldn't (e.g. strncat simplified into strcat).
2013-12-26spacingMark Kettenis
2013-12-26to be dealt withMarc Espie
2013-12-25repair the datesIngo Schwarze
2013-12-25Implement .Fo/.Fa/.Fc indentation and break handling for -Tman.Ingo Schwarze
2013-12-25Do not break output lines in .Fn function arguments in SYNOPSIS mode.Ingo Schwarze
Following an idea from Franco Fichtner, but implemented more cleanly. This reduces groff-mandoc-differences in base by a fantastic 7.5%.
2013-12-24Implement SYNOPSIS .Fn indentation for -Tman.Ingo Schwarze
2013-12-24It turns out SYNOPSIS mode does not imply .Bk in general,Ingo Schwarze
but only within .Nm blocks. Simplify the code accordingly. This reduces groff-mandoc differences in base by about 2%. Triggered by research done by Franco Fichtner.
2013-12-24When deciding whether two consecutive macros are on the same input line,Ingo Schwarze
we have to compare the line where the first one *ends* (not where it begins) to the line where the second one starts. This fixes the bug that .Bk allowed output line breaks right after block macros spanning more than one input line, even when the next macro follows on the same line.
2013-12-24More .Bk tests to lessen the risk of upcoming work.Ingo Schwarze
2013-12-24When i replaced the very ugly .in: suffix rule in my previous commit,Ingo Schwarze
that inadvertently disabled the -Tman tests. Oops. Enable them again. Fortunately, in the meantime, nothing slipped.
2013-12-22Fix end-of-sentence spacing after the DragonFly text production macro.Ingo Schwarze
Patch from Franco Fichtner <franco at lastsummer dot de>.
2013-12-22Implement end-of-sentence spacing at the end of man(7) macro lines.Ingo Schwarze
Improves cvs(1) pcap-filter(3) readline(3) termcap(5) cvsbug(8) mkhybrid(8) nsd-zonec(8) in multiple places and c++filt(1) com_err(3) nsd_conf(5) term(5) nsdc(8) in one place each. Reduces overall groff-mandoc-differences in base by about 1.5%. Patch from Franco Fichtner <franco at lastsummer dot de> (DragonFly).
2013-12-22Seems gcc4 whines about an empty file as well, so just unconditionally doMark Kettenis
what we did for gcc3.
2011-12-04test some simple macros; written while working on -TmanIngo Schwarze
2013-12-22Use a bigger timeout, otherwise this test fails on some (not really) slowerMark Kettenis
hardware.
2013-12-21Match the type to the callsPhilip Guenther
2013-12-21Use timespec and CLOCK_MONOTONIC for a timing testPhilip Guenther
2013-12-21Fix a commentPhilip Guenther
2013-12-15In quoted macro arguments, double quotes can be quoted by doubling them.Ingo Schwarze
For a long time, we handle this in roff(7) and man(7) macros. Now add correct handling for the mdoc(7) case, too. Closely based on a patch by Tsugutomo dot ENAMI at jp dot sony dot com, see http://gnats.netbsd.org/cgi-bin/query-pr-single.pl?number=48438 received via Thomas Klausner (wiz@), slightly tweaked by me.
2013-12-15The "value" argument to the roff(7) .nr requests ends right beforeIngo Schwarze
the first non-digit character. While here, implement and document an optional sign, requesting increment or decrement, as documented in the Ossanna/Kernighan/Ritter troff manual and supported by groff. Reported by bentley@ on discuss at mdocml.
2013-12-06test ed25519 support; from djm@Markus Friedl
2013-12-02Move ksh test files into regress.Todd C. Miller
2013-12-01Change 'mountlist' from CIRCLEQ to TAILQ. Be paranoid andKenneth R Westerback
use TAILQ_*_SAFE more than might be needed. Bulk ports build by sthen@ showed nobody sticking their fingers so deep into the kernel. Feedback and suggestions from millert@. ok jsing@