test-group-with-cleanup

test-group-with-cleanup suite-name decl-or-expr ... cleanup-form

SRFI-64: equivalent to

(test-group suite-name
  (dynamic-wind
      (lambda () #f)
      (lambda () decl-or-expr ...)
      (lambda () cleanup)))

See also test-group.