File tree Expand file tree Collapse file tree 2 files changed +38
-6
lines changed
Release/tests/functional/http/client Expand file tree Collapse file tree 2 files changed +38
-6
lines changed Original file line number Diff line number Diff line change @@ -761,15 +761,15 @@ SUITE(compression_tests)
761
761
// No acquire(), to force non-acquire compression client codepaths
762
762
virtual bool acquire (_Out_ _CharType*& ptr, _Out_ size_t & count)
763
763
{
764
- ptr;
765
- count;
764
+ ( void ) ptr;
765
+ ( void ) count;
766
766
return false ;
767
767
}
768
768
769
769
virtual void release (_Out_writes_(count) _CharType* ptr, _In_ size_t count)
770
770
{
771
- ptr;
772
- count;
771
+ ( void ) ptr;
772
+ ( void ) count;
773
773
}
774
774
775
775
static concurrency::streams::basic_istream<_CharType> open_istream (const _CharType* data, size_t size)
Original file line number Diff line number Diff line change 18
18
cmakeArgs : ' -G Ninja -DCMAKE_BUILD_TYPE=Debug ..'
19
19
- script : |
20
20
cd build.debug
21
- ninja -j 2
21
+ ninja -j 4
22
22
displayName: 'Run ninja'
23
23
- job : Ubuntu_1604_Apt_Release
24
24
pool :
37
37
cmakeArgs : ' -G Ninja -DCMAKE_BUILD_TYPE=Release ..'
38
38
- script : |
39
39
cd build.release
40
- ninja -j 2
40
+ ninja -j 4
41
+ displayName: 'Run ninja'
42
+ - job : MacOS_Debug
43
+ pool :
44
+ vmImage : ' macOS-10.13'
45
+ steps :
46
+ - script : brew install boost openssl ninja
47
+ displayName : Berw install dependencies
48
+ - script : mkdir build.debug
49
+ displayName : Make build.debug
50
+ - task : CMake@1
51
+ inputs :
52
+ workingDirectory : ' build.debug'
53
+ cmakeArgs : ' -G Ninja -DCMAKE_BUILD_TYPE=Debug ..'
54
+ - script : |
55
+ cd build.debug
56
+ ninja -j 4
57
+ displayName: 'Run ninja'
58
+ - job : MacOS_Release
59
+ pool :
60
+ vmImage : ' macOS-10.13'
61
+ steps :
62
+ - script : brew install boost openssl ninja
63
+ displayName : Berw install dependencies
64
+ - script : mkdir build.release
65
+ displayName : Make build.release
66
+ - task : CMake@1
67
+ inputs :
68
+ workingDirectory : ' build.release'
69
+ cmakeArgs : ' -G Ninja -DCMAKE_BUILD_TYPE=Release ..'
70
+ - script : |
71
+ cd build.release
72
+ ninja -j 4
41
73
displayName: 'Run ninja'
You can’t perform that action at this time.
0 commit comments