Commit 4b0f93f0 authored by Nils Goroll's avatar Nils Goroll

Also use the C locale for re-checking our list of tests

otherwise, when the tests directory contains vtc files whose names
get sorted differently in the current environment's locale than in C,
config.status will get re-run for every make check invocation, which
is particularly annoying with parallel makes
parent 0bb94ca7
......@@ -9,6 +9,7 @@ check: check-am check-local
check-am: check-local
# See if list of checks have changed, recheck
check-local:
LC_ALL=C; \
if [ "$$(cd $(srcdir) && echo tests/*.vtc)" != "@VTC_TESTS@" ]; then \
cd $(top_builddir) && ./config.status --recheck ; \
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment