diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-06-11 07:25:27 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-06-11 07:25:27 -0700 |
commit | f6e56f2b6475a44dca8233e821dd802cde7bb8c7 (patch) | |
tree | 923d35903a8daa8b8bddfa1913ee6675e9652712 /tests/012 | |
parent | fe4652d2925bd7a2296a6c527c49bd047f78febc (diff) | |
download | txr-f6e56f2b6475a44dca8233e821dd802cde7bb8c7.tar.gz txr-f6e56f2b6475a44dca8233e821dd802cde7bb8c7.tar.bz2 txr-f6e56f2b6475a44dca8233e821dd802cde7bb8c7.zip |
tests: remove *stderr* to *stdnull* redirection.
The recent commit 225ff2fa2fdb9e5169db5e2c06dc3b0053b775bb
titled "errors: avoid premature release of deferred warnings."
obviates the need for dealing with noise when detecting
errors from test cases.
* patmatch.tl: Remove macro-time-let around several
test cases.
* tests/012/ifa.tl: Likewise.
* tests/common.tl (macro-time-let): Macro removed.
Diffstat (limited to 'tests/012')
-rw-r--r-- | tests/012/ifa.tl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/012/ifa.tl b/tests/012/ifa.tl index 05b47ab3..45a2939b 100644 --- a/tests/012/ifa.tl +++ b/tests/012/ifa.tl @@ -14,8 +14,7 @@ (test (let ((x 1) (y 0)) (ifa (> x y) it)) 1) ;; multiple it-candidates: error -(macro-time-let ((*stderr* *stdnull*)) - (test (let (x y) (ifa (> (* x x) (* y y)) it)) :error)) +(test (let (x y) (ifa (> (* x x) (* y y)) it)) :error) ;; "it" is (+ 3 (* 2 x)) (test (let ((x 5)) |