1 /*
2  * $Id: testfull.i,v 1.1 2005-09-18 22:06:11 dhmunro Exp $
3  * This file runs a full set of tests on the Macintosh version
4  * of yorick, although it should be also useful for any other version.
5  */
6 /* Copyright (c) 2005, The Regents of the University of California.
7  * All rights reserved.
8  * This file is part of yorick (http://yorick.sourceforge.net).
9  * Read the accompanying LICENSE file for details.
10  */
11 
12 /* run all tests in testp.i */
13 skip_testb= 0;
14 skip_test1= 0;
15 skip_test2= 0;
16 skip_test3= 0;
17 
18 /* use the same pass count for all tests */
19 npass= 20;
20 
21 /* run the parser test */
22 #include "testp.i"
23 
24 /* Run the tests of the math library routines */
25 #include "testm.i"
26 testm;
27 
28 /* Run the linpack benchmark */
29 #include "testlp.i"
30 testlp, 200;
31 write, "";
32 
33 /* Run the tests of the graphics package */
34 include, "testg.i"
35 lissajous,0;
36 lissajous,1;
37 testg;
38 
39 #include "demo2.i"
40 demo2;
41 
42 grtest, quick=1;
43 txtest, quick=1;
44 if (batch()) winkill;
45