From 6870e96873452b19b9b76b85d028d9c6d4740395 Mon Sep 17 00:00:00 2001 From: Adam Spiers Date: Wed, 11 Nov 2020 19:41:38 +0000 Subject: [PATCH] CONTRIBUTING: Add a section on how to run the tests --- CONTRIBUTING.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 983f7b9..d8c82dd 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -25,6 +25,23 @@ There is also a [stow-devel](https://lists.gnu.org/mailman/listinfo/stow-devel) mailing list (see [Mailing lists](README.md#mailing-lists)). +Testing +~~~~~~~ + +The test suite can be found in the [`t/`](t/) subdirectory. You can +run the test suite via: + + make check + +Individual tests can be run as follows: + + perl -It t/stow.t + +or with a given debugging verbosity corresponding to the `-v` / `--verbose` +command-line option: + + TEST_VERBOSE=4 perl -It t/stow.t + Translating Stow ----------------