view tests/refupdate.sh @ 35062:a4bb5c40fc3f

Document that directx supports -panscan. Also remove a warning to only report -panscanrange issues against -vo gl; it seems to be working well enough for most others as well.
author reimar
date Fri, 07 Sep 2012 19:49:18 +0000
parents 6dc79618ec0e
children
line wrap: on
line source

#!/bin/sh
# updates all changed/new results in ref/
find res -name '*.bad' | while read bad_res ; do
  ref_file="ref/${bad_res#res/}"
  ref_file="${ref_file%.bad}"
  mkdir -p "$(dirname "$ref_file")"
  cp "$bad_res" "$ref_file"
done