Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
LEFEBVREJP email
rsm
Commits
d1db5313
Commit
d1db5313
authored
Jan 28, 2020
by
LEFEBVREJP email
Browse files
Updates to address Windows issues.
parent
325f15eb
Pipeline
#87868
failed with stages
in 46 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
d1db5313
...
...
@@ -2,12 +2,9 @@ stages:
-
test
-
analysis
.windows_before_script
:
&windows_before_script
before_script
:
-
set PATH=%PATH%;c:\vendors\mingw-w64\x86_64-4.8.5-posix-seh-rt_v4-rev0\mingw64\bin;c:\vendors\mingw-w64\qt\5.9.1\bin
.windows_msvc_before_script
:
&windows_msvc_before_script
before_script
:
-
set PATH=c:\Qt\5.9.1\msvc2013_64\bin;%PATH%;c:\Program Files (x86)\NSIS\Bin
-
set PATH=c:\Qt\5.9.1\msvc2013_64\bin;%PATH%;c:\Program Files (x86)\NSIS\Bin
;c:\vendors\cl\libssh\0.9.3\bin;c:\vendors\cl\openssl\1.1.1d\bin
mac_llvm_testing
:
tags
:
...
...
rsmcore/tests/tstSessionController.cc
View file @
d1db5313
...
...
@@ -3,6 +3,10 @@
#include "rsmcore/sessioncontroller.hh"
#include "rsmcore/sessionworker.hh"
#ifdef _WIN32
#include <windows.h>
#endif
using
namespace
rsm
;
TEST
(
RSM
,
SessionController
)
{
...
...
@@ -17,5 +21,10 @@ TEST(RSM, SessionController)
controller
.
requestExec
(
"ls -la"
);
controller
.
disconnect
();
// sleep while we wait for the sessionworker to finish
#ifdef _WIN32
Sleep
(
5
);
#else
sleep
(
5
);
}
\ No newline at end of file
#endif
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment