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
This commit is contained in:
Måns Rullgård 2010-07-12 21:17:10 +00:00
parent 0dc5ca2e12
commit 8e3275c1a2
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -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)