summaryrefslogtreecommitdiffstats
path: root/Tests/FindMatlab/cmake_matlab_unit_tests_timeout.m
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/FindMatlab/cmake_matlab_unit_tests_timeout.m')
-rw-r--r--Tests/FindMatlab/cmake_matlab_unit_tests_timeout.m16
1 files changed, 16 insertions, 0 deletions
diff --git a/Tests/FindMatlab/cmake_matlab_unit_tests_timeout.m b/Tests/FindMatlab/cmake_matlab_unit_tests_timeout.m
new file mode 100644
index 0000000..11d5e9e
--- /dev/null
+++ b/Tests/FindMatlab/cmake_matlab_unit_tests_timeout.m
@@ -0,0 +1,16 @@
+
+classdef cmake_matlab_unit_tests_timeout < matlab.unittest.TestCase
+ % timeout tests
+
+ properties
+ end
+
+ methods (Test)
+ function testCallHangsShouldBeTimedOut(testCase)
+ cmake_matlab_mex1(rand(3,3));
+ disp('Will now wait.');
+ disp('Testing the cmake Matlab package timeout - do not kill');
+ pause(20); % supposed to be killed after 15s
+ end
+ end
+end