From 9ea2a86d9432c9bd18d19ac42c3f415bbbc71dfc Mon Sep 17 00:00:00 2001 From: Eric Dobson Date: Sun, 27 Oct 2013 09:57:29 -0700 Subject: [PATCH] Add more bugs to known bugs list. original commit: e392b0880ae846c54a36a3e09845f36730b11885 --- .../tests/typed-racket/optimizer/known-bugs.rkt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/typed-racket-pkgs/typed-racket-test/tests/typed-racket/optimizer/known-bugs.rkt b/pkgs/typed-racket-pkgs/typed-racket-test/tests/typed-racket/optimizer/known-bugs.rkt index 1aeb1ec0..17df6cff 100644 --- a/pkgs/typed-racket-pkgs/typed-racket-test/tests/typed-racket/optimizer/known-bugs.rkt +++ b/pkgs/typed-racket-pkgs/typed-racket-test/tests/typed-racket/optimizer/known-bugs.rkt @@ -72,7 +72,11 @@ (bad-opt (+ (expt 10 501) (expt -10 501) 1.0+1.0i)) ;; Negation should correctly compute sign of 0.0 - (bad-opt (- (+ 0 0) 0.0+0.0i)))) + (bad-opt (- 0.0+0.0i)) + (bad-opt (- 0+0i 0.0+0.0i)) + + ;; Conjugate should correctly compute sign of 0.0 + (bad-opt (conjugate 0.0+0.0i)))) (module+ main (require rackunit/text-ui)