https://github.com/Kitware/CMake
Raw File
Tip revision: 51e7d4150756a01d51da38acfd0a469b138e1fde authored by Brad King on 29 June 2018, 13:03:08 UTC
CMake 3.12.0-rc2
Tip revision: 51e7d41
cmake_matlab_unit_tests_timeout.m

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
back to top