]> gitweb.michael.orlitzky.com - octave.git/blob - run-tests.m
Add first implementation of the steepest descent method.
[octave.git] / run-tests.m
1 #!/usr/bin/octave --silent
2 #
3 # You'll need to use the .octaverc in this directory to get the proper
4 # paths.
5 #
6
7 addpath('./unit_test');
8
9 unit_init(1, {});
10
11 test_files = glob('tests/*.m');
12
13 ## Source every file that matches the glob above.
14 cellfun(@source, test_files);