Commit 8e3275c1 authored by Måns Rullgård's avatar Måns Rullgård

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
parent 0dc5ca2e
......@@ -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)
......
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