You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following function is defined in src/suite.lisp:
(defunlist-all-suites ()
"Returns an unordered LIST of all suites."
(hash-table-values *suite*))
The problem with it is that variable *suite* is not used to store a hash table of all suites, but the current test suite object.
Fortunately, this function is not used anywhere at the moment, and the corresponding symbol is not even exported.
Perhaps, *toplevel-suites* was intented to be used?
The text was updated successfully, but these errors were encountered:
Aha! I found #4, and it seems that variable *suites* had been introduced previously, and used in list-all-suites. However, the associated commit no longer belongs to any existing branch's history, so I guess it was removed later.
The following function is defined in
src/suite.lisp
:The problem with it is that variable
*suite*
is not used to store a hash table of all suites, but the current test suite object.Fortunately, this function is not used anywhere at the moment, and the corresponding symbol is not even exported.
Perhaps,
*toplevel-suites*
was intented to be used?The text was updated successfully, but these errors were encountered: