@@ -95,10 +95,12 @@ jobs:
9595
9696 - name : Run "tag" UMF tests with latest UMF libs (warnings enabled)
9797 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"
102104
103105 # Browse all folders in the examples directory, build them using the
104106 # latest UMF version, and run them, excluding those in the exclude list.
@@ -220,10 +222,12 @@ jobs:
220222
221223 - name : Run "tag" UMF tests with latest UMF libs (warnings enabled)
222224 working-directory : ${{github.workspace}}/tag_version/build
225+ env :
226+ UMF_LOG : level:warning;flush:debug;output:stderr;pid:no
223227 run : |
224- $env:UMF_LOG="level:warning;flush:debug;output:stderr;pid:no"
225228 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
230+ &./test/Debug/test_memoryProvider.exe --gtest_filter="-*Trace"
227231
228232 # Browse all folders in the examples directory, build them using the
229233 # latest UMF version, and run them, excluding those in the exclude list.
@@ -361,10 +365,12 @@ jobs:
361365
362366 - name : Run "tag" UMF tests with latest UMF libs (warnings enabled)
363367 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
368+ env :
369+ UMF_LOG : level:warning;flush:debug;output:stderr;pid:no
370+ LD_LIBRARY_PATH : ${{github.workspace}}/latest_version/build/lib/
371+ run : |
372+ ctest --verbose -E test_memoryProvider
373+ test/test_memoryProvider --gtest_filter="-*Trace"
368374
369375 # Browse all folders in the examples directory, build them using the
370376 # latest UMF version, and run them, excluding those in the exclude list.
0 commit comments