Add sicp garbage example: tests/gc-1.test.

This commit is contained in:
Jan Nieuwenhuizen 2016-10-27 21:00:08 +02:00
parent f3225a77e2
commit c035a59094
4 changed files with 52 additions and 3 deletions

2
mes.c
View File

@ -37,7 +37,7 @@
int ARENA_SIZE = 28000; // sizeof(scm) = 24
int GC_SAFETY = 1000;
#else // testing
int ARENA_SIZE = 10;
int ARENA_SIZE = 11;
int GC_SAFETY = 0;
#endif

View File

@ -1,5 +1,6 @@
#! /bin/sh
# -*-scheme-*-
set -x
echo ' ()' | cat $($(dirname $0)/../scripts/include.mes $0) $0 /dev/stdin | $(dirname $0)/../scripts/mes "$@"
#paredit:||
exit $?

View File

@ -27,14 +27,14 @@ exit $?
(define zero (gc-make-cell 2 0 0))
(define one (gc-make-cell 2 0 1))
(display %the-cells) (newline)
(define pair (gc-make-cell 3 zero one))
(display "cells:") (display %the-cells) (newline)
(define zero-list (gc-make-cell 3 zero '()))
(define v (gc-make-vector 1))
(vector-set! v 0 88)
(define zero-v-list (gc-make-cell 3 v zero-list))
(define list (gc-make-cell 3 (gc-make-cell 3 zero one) zero-v-list))
(display "list: ") (display list) (newline)
(display "cells:") (display %the-cells) (newline)
(gc list)
(display "gc done\n")
(display "scm old:") (display %new-cells) (newline)

48
tests/gc-1.test Executable file
View File

@ -0,0 +1,48 @@
#! /bin/sh
# -*-scheme-*-
echo ' ()' | cat $($(dirname $0)/../scripts/include.mes $0) $0 /dev/stdin | $(dirname $0)/../scripts/mes "$@"
#paredit:||
exit $?
!#
;;; -*-scheme-*-
;;; Mes --- Maxwell Equations of Software
;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
;;;
;;; This file is part of Mes.
;;;
;;; Mes is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; Mes is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with Mes. If not, see <http://www.gnu.org/licenses/>.
(define first (gc-make-cell 0 0 #\F)) (newline)
(define one (gc-make-cell 2 0 1))
(display "\n one=") (display one) (newline)
(define two (gc-make-cell 2 0 2))
(define pair2-nil (gc-make-cell 3 two '()))
(display "\npair2-nil=") (display pair2-nil) (newline)
(gc-show)
(define list1-2 (gc-make-cell 3 one pair2-nil))
(display "\nlist1-2=") (display list1-2) (newline)
(gc-show)
(define three (gc-make-cell 2 0 3))
(define four (gc-make-cell 2 0 4))
(define pair4-nil (gc-make-cell 3 four '()))
(define list3-4 (gc-make-cell 3 three pair4-nil))
(define list1234 (gc-make-cell 3 list1-2 list3-4))
(gc-show)
(gc list1234)
(gc-show)