Have the TR test harness skip emacs unsaved file backups.

original commit: e64ba228e86847cc3c4a790911d083c779ff3283
This commit is contained in:
Vincent St-Amour 2011-05-12 17:46:09 -04:00
parent fa5a7fe291
commit bdd5b3bc1a

View File

@ -48,7 +48,9 @@
(make-test-suite
suite-name
(for/list ([name (directory-list dir)]
#:when (regexp-match ".*rkt$" name))
#:when (and (regexp-match ".*rkt$" name)
;; skip emacs temp unsaved file backups
(not (regexp-match "^\\.#" name))))
(make-test-suite
(path->string name)
(proc name)))))