mirror of
https://github.com/microsoft/mimalloc.git
synced 2025-05-08 00:09:31 +03:00
increase TSAN test to 400 iterations
This commit is contained in:
parent
d8e0cb1a37
commit
db3d8485d2
2 changed files with 5 additions and 5 deletions
|
@ -43,7 +43,7 @@ jobs:
|
||||||
solution: $(BuildType)/libmimalloc.sln
|
solution: $(BuildType)/libmimalloc.sln
|
||||||
configuration: '$(MSBuildConfiguration)'
|
configuration: '$(MSBuildConfiguration)'
|
||||||
msbuildArguments: -m
|
msbuildArguments: -m
|
||||||
- script: ctest --verbose --timeout 240 -C $(MSBuildConfiguration)
|
- script: ctest --verbose --timeout 180 -C $(MSBuildConfiguration)
|
||||||
workingDirectory: $(BuildType)
|
workingDirectory: $(BuildType)
|
||||||
displayName: CTest
|
displayName: CTest
|
||||||
#- script: $(BuildType)\$(BuildType)\mimalloc-test-stress
|
#- script: $(BuildType)\$(BuildType)\mimalloc-test-stress
|
||||||
|
@ -126,7 +126,7 @@ jobs:
|
||||||
cmakeArgs: .. $(cmakeExtraArgs)
|
cmakeArgs: .. $(cmakeExtraArgs)
|
||||||
- script: make -j$(nproc) -C $(BuildType)
|
- script: make -j$(nproc) -C $(BuildType)
|
||||||
displayName: Make
|
displayName: Make
|
||||||
- script: ctest --verbose --timeout 240
|
- script: ctest --verbose --timeout 180
|
||||||
workingDirectory: $(BuildType)
|
workingDirectory: $(BuildType)
|
||||||
displayName: CTest
|
displayName: CTest
|
||||||
env:
|
env:
|
||||||
|
@ -157,7 +157,7 @@ jobs:
|
||||||
cmakeArgs: .. $(cmakeExtraArgs)
|
cmakeArgs: .. $(cmakeExtraArgs)
|
||||||
- script: make -j$(sysctl -n hw.ncpu) -C $(BuildType)
|
- script: make -j$(sysctl -n hw.ncpu) -C $(BuildType)
|
||||||
displayName: Make
|
displayName: Make
|
||||||
- script: ctest --verbose --timeout 240
|
- script: ctest --verbose --timeout 180
|
||||||
workingDirectory: $(BuildType)
|
workingDirectory: $(BuildType)
|
||||||
displayName: CTest
|
displayName: CTest
|
||||||
# - upload: $(Build.SourcesDirectory)/$(BuildType)
|
# - upload: $(Build.SourcesDirectory)/$(BuildType)
|
||||||
|
@ -193,5 +193,5 @@ jobs:
|
||||||
# configuration: '$(MSBuildConfiguration)'
|
# configuration: '$(MSBuildConfiguration)'
|
||||||
# - script: |
|
# - script: |
|
||||||
# cd $(BuildType)
|
# cd $(BuildType)
|
||||||
# ctest --verbose --timeout 240
|
# ctest --verbose --timeout 180
|
||||||
# displayName: CTest
|
# displayName: CTest
|
||||||
|
|
|
@ -28,7 +28,7 @@ terms of the MIT license.
|
||||||
#if defined(MI_TSAN) // with thread-sanitizer reduce the threads to test within the azure pipeline limits
|
#if defined(MI_TSAN) // with thread-sanitizer reduce the threads to test within the azure pipeline limits
|
||||||
static int THREADS = 8;
|
static int THREADS = 8;
|
||||||
static int SCALE = 25;
|
static int SCALE = 25;
|
||||||
static int ITER = 200;
|
static int ITER = 400;
|
||||||
#elif defined(MI_UBSAN) // with undefined behavious sanitizer reduce parameters to stay within the azure pipeline limits
|
#elif defined(MI_UBSAN) // with undefined behavious sanitizer reduce parameters to stay within the azure pipeline limits
|
||||||
static int THREADS = 8;
|
static int THREADS = 8;
|
||||||
static int SCALE = 25;
|
static int SCALE = 25;
|
||||||
|
|
Loading…
Add table
Reference in a new issue