Change error messages for two TR unit tests

I'm not sure why, but these tests seem to emit one of two different
errors depending on the machine it's run on (hence the failure in
DrDr). For the short term, I've set the regular expression to allow
either of them.

original commit: e2e0ab748fdd99be105160e9a9706da970f0c5a2
This commit is contained in:
Asumu Takikawa 2014-03-12 10:01:49 -04:00
parent fc00888943
commit ef84da32f6

View File

@ -2439,12 +2439,12 @@
[tc-err (letrec-values ([(a b) (values x "b")]
[(x y) (values a b)])
a)
#:msg "no type information"]
#:msg "type information"]
[tc-err (letrec-values ([(a) (values x)]
[(x) (values z)]
[(z) (values a)])
a)
#:msg "no type information"]
#:msg "type information"]
;; make sure no-binding cases like the middle expression are checked
[tc-err (let () (define r "r") (string-append r 'foo) (define x "x") "y")
#:msg "expected: String.*given: 'foo"]