0.pre7.62:
[sbcl.git] / tests / clocc-ansi-test-known-bugs.lisp
1 ;;;; Set up *BUGID->KNOWNP* for clocc-ansi.test.sh.
2
3 ;;;; This software is part of the SBCL system. See the README file for
4 ;;;; more information.
5 ;;;;
6 ;;;; While most of SBCL is derived from the CMU CL system, the test
7 ;;;; files (like this one) were written from scratch after the fork
8 ;;;; from CMU CL.
9 ;;;; 
10 ;;;; This software is in the public domain and is provided with
11 ;;;; absolutely no warranty. See the COPYING and CREDITS files for
12 ;;;; more information.
13
14 (in-package :cl-user)
15
16 ;;; bugs, bugs, bugs
17 (defvar *bugid->knownp* (make-hash-table))
18 (map nil
19      (lambda (bugid)
20        (setf (gethash bugid *bugid->knownp*)
21              t))
22      #())