chiark / gitweb /
doctests: check: Define i and o vars
[subdirmk.git] / tests / filter / update-expected
index ff105423fa427ffe1d68836c36fe76735f4fb9f9..18c53cff4cfdf15d6f925f0b6cf55d4151e6c970 100755 (executable)
@@ -6,5 +6,13 @@
 #   selectively git-add the things that are right, after inspecting them
 
 set -e
-files=$(find tests/filter -name \*.tmp)
-for f in $files; do cp $f ${f%.tmp}.expected; done
+files=$(find tests/filter -name \*.expected.tmp)
+for f in $files; do
+       perl -pe '
+               (s/\n//, $stripnl=0) if $stripnl;
+               next unless /^# doctest starts/../^# doctest ends/;
+               $_="";
+               $stripnl=1;
+       ' \
+               <${f%.expected.tmp}.tmp >${f%.tmp}
+done