We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e223b3 commit 9462ddcCopy full SHA for 9462ddc
tests/runalltests.m
@@ -1,2 +1,8 @@
1
clear all; close all; clc;
2
-runtests
+
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