@@ -95,10 +95,12 @@ jobs:
9595
9696name : 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,11 @@ 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  
227230
228231#  Browse all folders in the examples directory, build them using the 
229232    #  latest UMF version, and run them, excluding those in the exclude list.
@@ -361,10 +364,12 @@ jobs:
361364
362365name : Run "tag" UMF tests with latest UMF libs (warnings enabled) 
363366      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" 
368373
369374#  Browse all folders in the examples directory, build them using the 
370375    #  latest UMF version, and run them, excluding those in the exclude list.
0 commit comments