diff --git a/usr.bin/lseg/Makefile b/usr.bin/lseg/Makefile index a47ba7d..d34c4d4 100644 --- a/usr.bin/lseg/Makefile +++ b/usr.bin/lseg/Makefile @@ -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 diff --git a/usr.bin/lseg/tests/dotests b/usr.bin/lseg/tests/dotests index ebd87af..b07b1bc 100644 --- a/usr.bin/lseg/tests/dotests +++ b/usr.bin/lseg/tests/dotests @@ -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" diff --git a/usr.bin/lseg/tests/fulltests b/usr.bin/lseg/tests/fulltests index f62a534..967189c 100644 --- a/usr.bin/lseg/tests/fulltests +++ b/usr.bin/lseg/tests/fulltests @@ -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 ---