~ubuntu-branches/ubuntu/quantal/gclcvs/quantal

« back to all changes in this revision

Viewing changes to ansi-tests/printer-control-vars.lsp

  • Committer: Bazaar Package Importer
  • Author(s): Camm Maguire
  • Date: 2004-06-24 15:13:46 UTC
  • Revision ID: james.westby@ubuntu.com-20040624151346-xh0xaaktyyp7aorc
Tags: 2.7.0-26
C_GC_OFFSET is 2 on m68k-linux

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
;-*- Mode:     Lisp -*-
 
2
;;;; Author:   Paul Dietz
 
3
;;;; Created:  Thu Jun  3 06:25:52 2004
 
4
;;;; Contains: Tests of initial values of printer control variables
 
5
 
 
6
(in-package :cl-test)
 
7
 
 
8
(deftest print-base.init.1
 
9
  *print-base*
 
10
  10)
 
11
 
 
12
(deftest print-radix.init.1
 
13
  *print-radix*
 
14
  nil)
 
15
 
 
16
(deftest print-case.init.1
 
17
  *print-case*
 
18
  :upcase)
 
19
 
 
20
(deftest print-circle.init.1
 
21
  *print-circle*
 
22
  nil)
 
23
 
 
24
(deftest print-escape.init.1
 
25
  (notnot *print-escape*)
 
26
  t)
 
27
 
 
28
(deftest print-gensym.init.1
 
29
  (notnot *print-gensym*)
 
30
  t)
 
31
 
 
32
(deftest print-level.init.1
 
33
  *print-level*
 
34
  nil)
 
35
 
 
36
(deftest print-length.init.1
 
37
  *print-length*
 
38
  nil)
 
39
 
 
40
(deftest print-lines.init.1
 
41
  *print-lines*
 
42
  nil)
 
43
 
 
44
(deftest print-readably.init.1
 
45
  *print-readably*
 
46
  nil)
 
47
 
 
48
(deftest print-right-margin.init.1
 
49
  *print-right-margin*
 
50
  nil)
 
51
 
 
52