diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/all-tests.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/common/all-tests.scm b/common/all-tests.scm index 54f1153a5..6cbbcbe67 100644 --- a/common/all-tests.scm +++ b/common/all-tests.scm @@ -19,9 +19,10 @@ ;; XXX: Currently, the makefile parser does not understand this ;; Makefile.am, so we hardcode the list of tests here. (map (lambda (name) - (test::binary #f - (path-join "common" name) - (path-join (getenv "objdir") "common" name))) + (let ((name-ext (string-append name (getenv "EXEEXT")))) + (test::binary #f + (path-join "common" name-ext) + (path-join (getenv "objdir") "common" name-ext)))) (list "t-stringhelp" "t-timestuff" "t-convert" |