Mercurial > hg > xemacs-beta
view move-if-change @ 5065:133e816778ed
fix expected-buggy test to avoid abort in test file
-------------------- ChangeLog entries follow: --------------------
tests/ChangeLog addition:
2010-02-22 Ben Wing <ben@xemacs.org>
* automated/syntax-tests.el:
Use Known-Bug-Expect-Error, not Known-Bug-Expect-Failure, when
error expected; else test suite will abort this file.
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Mon, 22 Feb 2010 21:16:19 -0600 |
parents | 376386a54a3c |
children |
line wrap: on
line source
#!/bin/sh if test -r $2 then if cmp $1 $2 > /dev/null then echo $2 is unchanged rm -f $1 else mv -f $1 $2 fi else mv -f $1 $2 fi