summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2010-07-12 21:17:10 +0000
committerMåns Rullgård <mans@mansr.com>2010-07-12 21:17:10 +0000
commit8e3275c1a23d70c46220399f6dbfee982c03249b (patch)
tree76eafe26d9a7a963d6d11572c9c4d128fcd1c405 /configure
parent0dc5ca2e12ed6ec22de729a371e68baa25ceeaf7 (diff)
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
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 0690668096..2a1d520e1c 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)