diff options
Diffstat (limited to 'tests/fate.sh')
-rwxr-xr-x | tests/fate.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/fate.sh b/tests/fate.sh index 6e0c0c634a..f3712911eb 100755 --- a/tests/fate.sh +++ b/tests/fate.sh @@ -35,16 +35,18 @@ checkout(){ update()( cd ${src} || return case "$repo" in - git:*) git fetch --force; git reset --hard origin/master ;; + git:*) git fetch --force && git reset --hard FETCH_HEAD ;; esac ) configure()( cd ${build} || return - ${src}/configure \ + ${shell} ${src}/configure \ --prefix="${inst}" \ --samples="${samples}" \ --enable-gpl \ + --enable-memory-poisoning \ + --enable-avresample \ ${arch:+--arch=$arch} \ ${cpu:+--cpu="$cpu"} \ ${cross_prefix:+--cross-prefix="$cross_prefix"} \ |