Makefile:

abbreviated some macros
tests/dotests, tests/fulltests:
	changed paths of $testcmd and $trcmd
This commit is contained in:
gdr-ftp 1998-03-08 17:43:49 +00:00
parent 7c0cc1c3d4
commit e42c4e0794
3 changed files with 7 additions and 11 deletions

View File

@ -1,7 +1,7 @@
#
# This makefile is intended for use with dmake(1) on Apple IIGS
#
# $Id: Makefile,v 1.4 1997/09/28 16:41:12 gdr Exp $
# $Id: Makefile,v 1.5 1998/03/08 17:43:43 gdr-ftp Exp $
#
# Created by Dave Tribby, September 1997
@ -10,12 +10,8 @@ PROG = lseg
# 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 = -1
.END
STACK *= 1024
OPTIMIZE *= -1
# Delivery directory
BINDIR = /usr/bin

View File

@ -1,9 +1,9 @@
# Tests for lseg command; invoked by command file "fulltests"
# Written by Dave Tribby (September 1997)
# $Id: dotests,v 1.1 1997/09/28 16:41:37 gdr Exp $
# $Id: dotests,v 1.2 1998/03/08 17:43:46 gdr-ftp Exp $
# Location of the lseg command to be tested
set testcmd="../lseg"
set testcmd="/obj/gno/usr.bin/lseg/lseg"
# 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 * September 1997
# $Id: fulltests,v 1.1 1997/09/28 16:41:37 gdr Exp $
# $Id: fulltests,v 1.2 1998/03/08 17:43:49 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 ---