]> gitweb.michael.orlitzky.com - octave.git/blob - run-tests.m
Add tridiagonal() and its tests.
[octave.git] / run-tests.m
1 #!/usr/bin/octave --silent
2
3 addpath('./unit_test');
4
5 unit_init(1, {});
6
7 test_files = glob('tests/*.m');
8
9 ## Source every file that matches the glob above.
10 cellfun(@source, test_files);