From 8e3275c1a23d70c46220399f6dbfee982c03249b Mon Sep 17 00:00:00 2001 From: =?utf8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Mon, 12 Jul 2010 21:17:10 +0000 Subject: [PATCH] configure: match regtest ref files more strictly Only names consisting of letters, numbers, hyphens, and underscores are allowed. Originally committed as revision 24222 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 069066809..2a1d520e1 100755 --- a/configure +++ b/configure @@ -1609,7 +1609,7 @@ PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c) FILTER_LIST=$(find_things filter FILTER libavfilter/allfilters.c) find_tests(){ - map 'echo ${v}_test' $(ls "$source_path"/tests/ref/$1) + map 'echo ${v}_test' $(ls "$source_path"/tests/ref/$1 | grep -v '[^-a-z0-9_]') } ACODEC_TESTS=$(find_tests acodec) -- 2.11.0