Annotation of gforth/other-tests.fs, revision 1.4

1.1       anton       1: \ various tests, especially for bugs that have been fixed
                      2: 
1.4     ! anton       3: \ Copyright (C) 1997 Free Software Foundation, Inc.
        !             4: 
        !             5: \ This file is part of Gforth.
        !             6: 
        !             7: \ Gforth is free software; you can redistribute it and/or
        !             8: \ modify it under the terms of the GNU General Public License
        !             9: \ as published by the Free Software Foundation; either version 2
        !            10: \ of the License, or (at your option) any later version.
        !            11: 
        !            12: \ This program is distributed in the hope that it will be useful,
        !            13: \ but WITHOUT ANY WARRANTY; without even the implied warranty of
        !            14: \ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
        !            15: \ GNU General Public License for more details.
        !            16: 
        !            17: \ You should have received a copy of the GNU General Public License
        !            18: \ along with this program; if not, write to the Free Software
        !            19: \ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
        !            20: 
1.1       anton      21: \ combination of marker and locals
                     22: marker foo1
                     23: marker foo2
                     24: foo2
                     25: 
                     26: : bar { xxx yyy } ;
                     27: 
                     28: foo1
                     29: 
1.3       anton      30: \ locals in an if structure
                     31: : locals-test1
                     32:     lp@ swap
                     33:     if
                     34:        { a } a
                     35:     else
                     36:     endif
                     37:     lp@ <> abort" locals in if error 1" ;
                     38: 
                     39: 0 locals-test1
                     40: 1 locals-test1
                     41: 
1.1       anton      42: \ comments across several lines
                     43: 
                     44: ( fjklfjlas;d
                     45: abort" ( does not work across lines"
1.2       anton      46: )
                     47: 
                     48: s" ( testing ( without delimited by newline in non-files" evaluate
                     49: 
                     50: \ last test!
                     51: \ testing '(' without ')' at end-of-file
                     52: ." expect ``warning: ')' missing''" cr
                     53: (

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>