Diff for /gforth/test/coreext.fs between versions 1.2 and 1.7

version 1.2, 2007/12/31 18:40:26 version 1.7, 2011/12/31 15:29:26
Line 1 Line 1
 \ test some core ext words  \ test some core ext words
   
 \ Copyright (C) 2005 Free Software Foundation, Inc.  \ Copyright (C) 2005,2007,2010,2011 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.2  
changed lines
  Added in v.1.7


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