diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2017-03-08 22:54:22 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2017-03-08 22:54:22 +0000 |
commit | eb74e0f0e616a89f769432b7f4c31856c1a37f49 (patch) | |
tree | fab71235e5595f9027cea5153f6d0f3dd6de3c0e /regress/mdoc/Dd/Makefile | |
parent | aed548e3b22772365ac5fdaf6cdb29f7b2b1b126 (diff) | |
download | mandoc-eb74e0f0e616a89f769432b7f4c31856c1a37f49.tar.gz |
Now that markdown output is tested for almost everything, test all
input files in -T markdown output mode by default and only mark
those files with SKIP_MARKDOWN that are not to be tested.
Much easier to read, and almost minus 40 lines of Makefile code.
Diffstat (limited to 'regress/mdoc/Dd/Makefile')
-rw-r--r-- | regress/mdoc/Dd/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/regress/mdoc/Dd/Makefile b/regress/mdoc/Dd/Makefile index 396b268d..870d1cd9 100644 --- a/regress/mdoc/Dd/Makefile +++ b/regress/mdoc/Dd/Makefile @@ -2,7 +2,11 @@ REGRESS_TARGETS = badarg dupe late long manarg noarg order LINT_TARGETS = badarg dupe late long manarg noarg order -MARKDOWN_TARGETS = badarg dupe late long manarg order + +# noarg output contains the date when the file is formatted + +SKIP_ASCII ?= noarg +SKIP_MARKDOWN ?= noarg # If groff finds exactly three arguments, it assumes they are month, # day and year without further checking. If there are no arguments, @@ -11,7 +15,6 @@ MARKDOWN_TARGETS = badarg dupe late long manarg order # That is not at all sane behaviour, we are not going to imitate it. SKIP_GROFF = badarg long manarg noarg -SKIP_ASCII = noarg # Autodetection fails for late .Dd, so specify -mdoc explicitly. |