Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
plotID_matlab
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
plotID
plotID_matlab
Merge requests
!15
Merge "Dev/ci tests" - First working matlab script CI test with protocol output - on windows server
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Merged
Merge "Dev/ci tests" - First working matlab script CI test with protocol output - on windows server
dev/CI-Tests
into
development
Overview
0
Commits
3
Pipelines
1
Changes
3
Merged
Hock, Martin
requested to merge
dev/CI-Tests
into
development
3 years ago
Overview
0
Commits
3
Pipelines
1
Changes
3
Expand
0
0
Merge request reports
Compare
development
development (base)
and
latest version
latest version
77265eab
3 commits,
3 years ago
3 files
+
29
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
CI_files/runner_test.m
+
12
−
5
Options
function
[
result
]
=
runner_test
()
%RUNNER_TEST testing function to test, if the runner is set up properl
y
result
=
t
ru
e
;
exit
(
result
);
%Test 1
tr
y
result
t
=
ru
nner_testing
catch
warning
(
"Error in Test1"
);
end
exit
(
resultt
)
function
[
result
]
=
runner_testing
()
%RUNNER_TESTING testing function to test, if the runner is set up properly
result
=
true
;
disp
(
pwd
);
result
=
version
;
disp
(
result
);
result
=
isempty
(
result
);
disp
(
result
);
result
=
int8
(
result
);
disp
(
result
);
pause
(
5
);
end
Loading