cmake_matlab_unit_tests_timeout.m 383 B

12345678910111213141516
  1. classdef cmake_matlab_unit_tests_timeout < matlab.unittest.TestCase
  2. % timeout tests
  3. properties
  4. end
  5. methods (Test)
  6. function testCallHangsShouldBeTimedOut(testCase)
  7. cmake_matlab_mex1(rand(3,3));
  8. disp('Will now wait.');
  9. disp('Testing the cmake Matlab package timeout - do not kill');
  10. pause(20); % supposed to be killed after 15s
  11. end
  12. end
  13. end