Skip to content

Commit 9462ddc

Browse files
modified runalltests to run on octave
1 parent 5e223b3 commit 9462ddc

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tests/runalltests.m

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
11
clear all; close all; clc;
2-
runtests
2+
3+
addpath(genpath('..'));
4+
dirlist = dir('./test_*');
5+
for i = 1:length(dirlist)
6+
name = dirlist(i).name(1:end-2);
7+
feval(name)
8+
end

0 commit comments

Comments
 (0)