Diff for /gforth/test/coreext.fs between versions 1.3 and 1.6

version 1.3, 2007/12/31 19:02:25 version 1.6, 2011/04/20 18:55:07
Line 1 Line 1
 \ test some core ext words  \ test some core ext words
   
 \ Copyright (C) 2005,2007 Free Software Foundation, Inc.  \ Copyright (C) 2005,2007,2010 Free Software Foundation, Inc.
   
 \ This file is part of Gforth.  \ This file is part of Gforth.
   
Line 17 Line 17
 \ You should have received a copy of the GNU General Public License  \ You should have received a copy of the GNU General Public License
 \ along with this program. If not, see http://www.gnu.org/licenses/.  \ along with this program. If not, see http://www.gnu.org/licenses/.
   
   testing core ext
 { 1 2 3 4 0 roll -> 1 2 3 4 }  { 1 2 3 4 0 roll -> 1 2 3 4 }
 { 1 2 3 4 1 roll -> 1 2 4 3 }  { 1 2 3 4 1 roll -> 1 2 4 3 }
 { 1 2 3 4 2 roll -> 1 3 4 2 }  { 1 2 3 4 2 roll -> 1 3 4 2 }
 { 1 2 3 4 3 roll -> 2 3 4 1 }  { 1 2 3 4 3 roll -> 2 3 4 1 }
   
   { 1 0 U> -> <TRUE> }
   { 2 1 U> -> <TRUE> }
   { MID-UINT 0 U> -> <TRUE> }
   { MAX-UINT 0 U> -> <TRUE> }
   { MAX-UINT MID-UINT U> -> <TRUE> }
   { 0 0 U> -> <FALSE> }
   { 1 1 U> -> <FALSE> }
   { 0 1 U> -> <FALSE> }
   { 1 2 U> -> <FALSE> }
   { 0 MID-UINT U> -> <FALSE> }
   { 0 MAX-UINT U> -> <FALSE> }
   { MID-UINT MAX-UINT U> -> <FALSE> }
   

Removed from v.1.3  
changed lines
  Added in v.1.6


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