comparison m-toolbox/test/repo_tests/run_repo_tests.m @ 0:f0afece42f48

Import.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 23 Nov 2011 19:22:13 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f0afece42f48
1 % A simple script to run all the repository test scripts from a single
2 % database connection.
3 %
4 % M Hewitson 24-02-08
5 %
6 % $Id: run_repo_tests.m,v 1.7 2008/11/14 09:51:55 hewitson Exp $
7 %
8
9 clear all;
10
11 conn = utils.mysql.connect('130.75.117.63', 'ltpda_test');
12
13 test_ao(conn)
14 test_mfir(conn)
15 test_miir(conn)
16 % test_plist(conn)
17 test_pzmodel(conn)
18 test_timespan(conn)
19
20 close(conn);