view tests/refupdate.sh @ 34639:3a11bcafd262

Mark window title as UTF-8. Makes setting a -title with UTF-8 characters work. Patch by Vladimir Mosgalin [mosgalin {} VM10124 spb edu], updated by me to latest SVN.
author reimar
date Tue, 14 Feb 2012 20:23:02 +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