@@ -95,10 +95,12 @@ jobs:
95
95
96
96
- name : Run "tag" UMF tests with latest UMF libs (warnings enabled)
97
97
working-directory : ${{github.workspace}}/tag_version/build
98
- run : >
99
- UMF_LOG="level:warning;flush:debug;output:stderr;pid:no"
100
- LD_LIBRARY_PATH=${{github.workspace}}/latest_version/build/lib/
101
- ctest --verbose
98
+ env :
99
+ UMF_LOG : level:warning;flush:debug;output:stderr;pid:no
100
+ LD_LIBRARY_PATH : ${{github.workspace}}/latest_version/build/lib/
101
+ run : |
102
+ ctest --verbose -E test_memoryProvider
103
+ test/test_memoryProvider --gtest_filter="-*Trace"
102
104
103
105
# Browse all folders in the examples directory, build them using the
104
106
# latest UMF version, and run them, excluding those in the exclude list.
@@ -220,10 +222,11 @@ jobs:
220
222
221
223
- name : Run "tag" UMF tests with latest UMF libs (warnings enabled)
222
224
working-directory : ${{github.workspace}}/tag_version/build
225
+ env :
226
+ UMF_LOG : level:warning;flush:debug;output:stderr;pid:no
223
227
run : |
224
- $env:UMF_LOG="level:warning;flush:debug;output:stderr;pid:no"
225
228
cp ${{github.workspace}}/latest_version/build/bin/Debug/umf.dll ${{github.workspace}}/tag_version/build/bin/Debug/umf.dll
226
- ctest -C Debug --verbose
229
+ ctest -C Debug --verbose -E test_memoryProvider
227
230
228
231
# Browse all folders in the examples directory, build them using the
229
232
# latest UMF version, and run them, excluding those in the exclude list.
@@ -361,10 +364,12 @@ jobs:
361
364
362
365
- name : Run "tag" UMF tests with latest UMF libs (warnings enabled)
363
366
working-directory : ${{github.workspace}}/tag_version/build
364
- run : >
365
- UMF_LOG="level:warning;flush:debug;output:stderr;pid:no"
366
- LD_LIBRARY_PATH=${{github.workspace}}/latest_version/build/lib/
367
- ctest --verbose
367
+ env :
368
+ UMF_LOG : level:warning;flush:debug;output:stderr;pid:no
369
+ LD_LIBRARY_PATH : ${{github.workspace}}/latest_version/build/lib/
370
+ run : |
371
+ ctest --verbose -E test_memoryProvider
372
+ test/test_memoryProvider --gtest_filter="-*Trace"
368
373
369
374
# Browse all folders in the examples directory, build them using the
370
375
# latest UMF version, and run them, excluding those in the exclude list.
0 commit comments