trying to fight runtime errors

This commit is contained in:
Danny Yoo 2012-10-23 17:53:44 -06:00
parent 433a73aefa
commit 6cb8309ea0

View File

@ -66,8 +66,8 @@
(define-struct (exn:fail:error-on-test exn:fail)
(srcloc)
#:property prop:exn:srclocs
(lambda (a-struct)
(list (exn:fail:error-on-test-srcloc a-struct))))
(lambda (a-struct)
(list (exn:fail:error-on-test-srcloc a-struct))))
@ -86,9 +86,9 @@
[else
(printf " error!\n")
(displayln (exn-message (make-exn:fail:error-on-test
(format "Expected ~s, got ~s" exp output)
(current-continuation-marks)
(loc-thunk))))])))
(format "Expected ~s, got ~s" exp output)
(current-continuation-marks)
(loc-thunk))))])))
@ -105,10 +105,12 @@
[(_ original-source-file-path original-expected-file-path)
(with-syntax ([stx stx]
[source-file-path (parameterize ([current-directory
(current-load-relative-directory)])
(or (current-load-relative-directory)
(current-directory))])
(normalize-path (syntax-e #'original-source-file-path)))]
[expected-file-path (parameterize ([current-directory
(current-load-relative-directory)])
(or (current-load-relative-directory)
(current-directory))])
(normalize-path (syntax-e #'original-expected-file-path)))])
(quasisyntax/loc #'stx
(test/loc original-source-file-path source-file-path