OpenAFS Master Repository branch, master, updated. openafs-devel-1_9_1-31-g004c797
Gerrit Code Review
gerrit@openafs.org
Fri, 11 Jun 2021 05:24:53 -0400
The following commit has been merged in the master branch:
commit 004c797daa2e3ebad5d415c5e63ff0dab43bf7d7
Author: Andrew Deason <adeason@sinenomine.net>
Date: Wed Jul 1 14:21:35 2020 -0500
tests: Introduce 'make check TESTS=test/name'
Currently 'make check' always runs all tests. We can run individual
tests manually, but doing so is a bit cumbersome to do under the same
environment as 'make check', since doing so means running something
like this:
$ MAKECHECK=1 $(abs_top_srcdir)/tests/libwrap @TOP_OBJDIR@/lib \
./runtests opr/fmt util/ktime
To make it easier to run single tests introduce a way of calling 'make
check' like this:
$ make check TESTS='opr/fmt util/ktime'
Which will run the same commands as 'make check', but will run
runtests with only the specified tests, instead of running the default
list.
Some makefiles currently use a "TESTS" or "tests" variable to list
their test binaries; rename them all to "BINS" to avoid conflicting
with this new use for "TESTS" and to make our makefiles a little more
consistent.
Change-Id: I427f83be0d4571794644a97123bcd1f32427bd05
Reviewed-on: https://gerrit.openafs.org/14317
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Michael Meffie <mmeffie@sinenomine.net>
Reviewed-by: Benjamin Kaduk <kaduk@mit.edu>
Makefile.in | 2 +-
tests/Makefile.in | 11 ++++++++++-
tests/auth/Makefile.in | 6 +++---
tests/cmd/Makefile.in | 6 +++---
tests/opr/Makefile.in | 8 ++++----
tests/rx/Makefile.in | 6 +++---
tests/util/Makefile.in | 6 +++---
tests/volser/Makefile.in | 6 +++---
8 files changed, 30 insertions(+), 21 deletions(-)
--
OpenAFS Master Repository