Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
pass_runner.m 290 B
function [retVal] = pass_runner()
%pass_runner testing function to test, if the runner is set up properly
    retVal = 0; % test should succeed !
    fid = fopen(fullfile('log.txt'),'w');
	txt = ['This is a test, Errorstate: ', num2str(retVal)];
    fprintf(fid,txt); 
    fclose(fid);
end