Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
33ba7e14
Commit
33ba7e14
authored
May 25, 2018
by
Simon Giesecke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Problem: VS2008/2010/2017 tests fail if run in parallel
Solution: disabled parallel testing for these VS versions
parent
fae88633
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
appveyor.yml
appveyor.yml
+10
-1
No files found.
appveyor.yml
View file @
33ba7e14
...
...
@@ -153,7 +153,16 @@ after_build:
test_script
:
-
cmd
:
cd "%LIBZMQ_BUILDDIR%"
-
cmd
:
ctest -C "%Configuration%" -V -j5
# TODO run tests in parallel only on selected platforms, since they fail on others, see https://github.com/zeromq/libzmq/issues/3123
-
cmd
:
if "%CMAKE_GENERATOR%"=="Visual Studio 12 2013" set PARALLELIZE=ON
-
cmd
:
if "%CMAKE_GENERATOR%"=="Visual Studio 14 2015" set PARALLELIZE=ON
-
cmd
:
if "%CMAKE_GENERATOR%"=="Visual Studio 12 2013 Win64" set PARALLELIZE=ON
-
cmd
:
if "%CMAKE_GENERATOR%"=="Visual Studio 14 2015 Win64" set PARALLELIZE=ON
-
cmd
:
if "%PARALLELIZE%"=="ON" (
echo "Running tests in parallel" &&
set TEST_OPTIONS=-j5
)
-
cmd
:
ctest -C "%Configuration%" -V %TEST_OPTIONS%
for
:
-
...
...
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