Ticket #1044: stalin-test.diff

File stalin-test.diff, 520 bytes (added by Mario Domenech Goulart, 11 years ago)
  • run.scm

     
    11;;;; run.scm - trivial test
    22
    33(use setup-api)
    4 (define stalin (make-pathname (program-path) "chicken-stalin"))
    54
     5(define stalin
     6  (make-pathname
     7   (if (get-environment-variable "SALMONELLA_RUNNING")
     8       #f ;; salmonella adds its PREFIX/bin to PATH
     9       (program-path))
     10   "chicken-stalin"))
     11
    612(run (,stalin -On -k -d1 hello.scm))
    713(run (./hello))
    8