Makefile:

abbreviated some macros
colcrt.desc:
	changed 'trenco.myrias.com' to 'ftp.gno.org'
tests/dotests, tests/fulltests:
	changed paths of $testcmd and $trcmd
This commit is contained in:
gdr-ftp 1998-03-08 17:36:38 +00:00
parent 9cdea96615
commit 9103cfa195
4 changed files with 8 additions and 12 deletions

View File

@ -2,7 +2,7 @@
#
# Modified for GNO (Apple IIgs) and dmake(1) by Steve Reeves, January 1998
#
# $Id: Makefile,v 1.1 1998/02/17 03:12:27 gdr-ftp Exp $
# $Id: Makefile,v 1.2 1998/03/08 17:36:27 gdr-ftp Exp $
PROG= colcrt
@ -12,11 +12,7 @@ DEFINES+= -DNOID
# Default stack size and optimization (can be overridden by cmd line)
# These values have been tested and certified as working
.IF $(STACK) == $(NULL)
STACK= 1024
.END
.IF $(OPTIMIZE) == $(NULL)
OPTIMIZE= 127
.END
STACK *= 1024
OPTIMIZE *= 127
.INCLUDE: /src/gno/prog.mk

View File

@ -4,6 +4,6 @@ Shell: GNO
Author: Steve Reeves (from FreeBSD code)
Contact: stever@gate.net
Where: /usr/bin
FTP: ground.isca.uiowa.edu apple2.caltech.edu trenco.myrias.com
FTP: ground.isca.uiowa.edu apple2.caltech.edu ftp.gno.org
Filter nroff output for CRT previewing.

View File

@ -1,10 +1,10 @@
# Tests for colcrt command; invoked by command file "fulltests"
# Adapted from a test script written by Dave Tribby
#
# $Id: dotests,v 1.1 1998/02/17 03:12:50 gdr-ftp Exp $
# $Id: dotests,v 1.2 1998/03/08 17:36:35 gdr-ftp Exp $
# Location of the command to be tested
set testcmd="../colcrt"
set testcmd="/obj/gno/usr.bin/colcrt/colcrt"
# Record starting time
echo -n "Testing command $testcmd beginning at"

View File

@ -1,6 +1,6 @@
# gsh script to run tests and collect results
# Written by Dave Tribby * August 1997
# $Id: fulltests,v 1.1 1998/02/17 03:12:53 gdr-ftp Exp $
# $Id: fulltests,v 1.2 1998/03/08 17:36:38 gdr-ftp Exp $
# Name of gsh script containing test cases
set command="dotests"
@ -12,7 +12,7 @@ set raw_file="/tmp/rawlist"
set result_file="test.list"
# Location of tr command that knows how to handle classes
set trcmd="/src/gno/usr.bin/tr/tr"
set trcmd="/obj/gno/usr.bin/tr/tr"
# --- Begin the tests ---