From 76fbda4c3b86b4943223b75770c7c7e3dd9c8a7d Mon Sep 17 00:00:00 2001 From: Kris Katterjohn Date: Fri, 21 May 2021 09:48:33 -0400 Subject: [PATCH] Fix bug #3784: Bogus list of expected test failures (lisp-only build) In commit 94eecb50 I marked the tests that require the documentation to be present as expected failures when Maxima is built using the lisp-only build procedure. This got broken in commit 3c2953c4 when changing the format of testsuite_files. --- src/testsuite.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/testsuite.lisp b/src/testsuite.lisp index 388eaea59..52e7ad895 100644 --- a/src/testsuite.lisp +++ b/src/testsuite.lisp @@ -30,7 +30,7 @@ ((mlist simp) "rtest5" ,@(and (boundp '*autoconf-lisp-only-build*) (symbol-value '*autoconf-lisp-only-build*) - (list* '(mlist simp) (list 78 80)))) + (list (list '(mlist simp) 78 80)))) ;; 46 = ECL bug #437: mishandling float format ;; 45 sporadically fails in all tested ECL versions (15.3.7-16.1.3) ;; 43 fails in ECL up to version 15.3.7 -- 2.11.4.GIT