From: Joel Rosdahl Date: Sat, 28 Jul 2012 15:17:58 +0000 (+0200) Subject: Ignore git's merge conflict files when finding unit tests X-Git-Tag: v3.2~123 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=61a5a29376bad38a82b8e888f873b6772c1e02ee;p=thirdparty%2Fccache.git Ignore git's merge conflict files when finding unit tests --- diff --git a/configure.ac b/configure.ac index 35f1d9a0e..aef2b6d5d 100644 --- a/configure.ac +++ b/configure.ac @@ -131,10 +131,7 @@ elif test ! -f $srcdir/version.c; then fi dnl Find test suite files. -test_suites="" -for x in $srcdir/test/test_*.c; do - test_suites="$test_suites $x" -done +test_suites=`ls test/test_*.c | grep -Ev 'BASE|BACKUP|LOCAL|REMOTE' | xargs echo` AC_CONFIG_FILES([Makefile]) AC_OUTPUT