Skip to content

Commit

Permalink
Universal backend: cleanup after Java compilation of unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
feeley committed Jun 4, 2015
1 parent 77c79a6 commit 465aa24
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion gsc/runtests.scm
Expand Up @@ -159,7 +159,13 @@
(apply run (append (cdddr t) (list out))))))

(if (not (equal? target "gambit"))
(if cleanup? (delete-file out)))
(if cleanup?
(begin
(delete-file out)
(if (equal? target "java")
(parameterize ((current-directory
(path-directory out)))
(shell-command "rm Gambit_*.class"))))))

result))

Expand Down
4 changes: 2 additions & 2 deletions include/stamp.h
Expand Up @@ -2,5 +2,5 @@
* Time stamp of last source code repository commit.
*/

#define ___STAMP_YMD 20150603
#define ___STAMP_HMS 234523
#define ___STAMP_YMD 20150604
#define ___STAMP_HMS 224837

0 comments on commit 465aa24

Please sign in to comment.