view tests/refupdate.sh @ 36822:95e3f435bc57

Enable setting full audio delay value range. The option allows a range of -100..100. Additionally, set the step increment (X11/GTK) resp. line size (Win32) to 0.1.
author ib
date Mon, 24 Feb 2014 10:31:09 +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