[FFmpeg-cvslog] r24222 - trunk/configure
mru
subversion
Mon Jul 12 23:17:10 CEST 2010
Author: mru
Date: Mon Jul 12 23:17:10 2010
New Revision: 24222
Log:
configure: match regtest ref files more strictly
Only names consisting of letters, numbers, hyphens, and underscores
are allowed.
Modified:
trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure Mon Jul 12 23:02:52 2010 (r24221)
+++ trunk/configure Mon Jul 12 23:17:10 2010 (r24222)
@@ -1609,7 +1609,7 @@ PROTOCOL_LIST=$(find_things protocol PRO
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)
More information about the ffmpeg-cvslog
mailing list