All -- This Makefile patch addes euclid.pasm to the make test target. Note also that it redirects output to t/*.out, which other folks might not agree with (I like it, given the amount of output generated for some tests).
Regards, -- Gregor _____________________________________________________________________ / perl -e 'srand(-2091643526); print chr rand 90 for (0..4)' \ Gregor N. Purdy [EMAIL PROTECTED] Focus Research, Inc. http://www.focusresearch.com/ 8080 Beckett Center Drive #203 513-860-3570 vox West Chester, OH 45069 513-860-3579 fax \_____________________________________________________________________/
Index: Makefile =================================================================== RCS file: /home/perlcvs/parrot/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- Makefile 2001/09/12 09:54:45 1.8 +++ Makefile 2001/09/12 19:36:22 @@ -51,8 +51,10 @@ test: perl assemble.pl t/test.pasm > t/test.pbc - ./test_prog t/test.pbc + ./test_prog t/test.pbc > t/test.out perl assemble.pl t/test2.pasm > t/test2.pbc - ./test_prog t/test2.pbc + ./test_prog t/test2.pbc > t/test2.out perl assemble.pl t/test3.pasm > t/test3.pbc - ./test_prog t/test3.pbc + ./test_prog t/test3.pbc > t/test3.out + perl assemble.pl t/euclid.pasm > t/euclid.pbc + ./test_prog t/euclid.pbc > t/euclid.out