mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-15 03:34:56 +00:00
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:
parent
0dc5ca2e12
commit
8e3275c1a2
2
configure
vendored
2
configure
vendored
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user