File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -59,11 +59,11 @@ jobs:
59
59
60
60
- name : Run regular tests
61
61
working-directory : ${{github.workspace}}/build
62
- run : ctest -C ${{matrix.build_type}} --output-on-failure -E "fuzz|test_init_teardown "
62
+ run : ctest -C ${{matrix.build_type}} --output-on-failure -E "fuzz"
63
63
64
64
- name : Run regular tests with proxy library
65
65
working-directory : ${{env.BUILD_DIR}}
66
- run : LD_PRELOAD=./lib/libumf_proxy.so ctest -C ${{matrix.build_type}} --output-on-failure -E "fuzz|test_init_teardown "
66
+ run : LD_PRELOAD=./lib/libumf_proxy.so ctest -C ${{matrix.build_type}} --output-on-failure -E "fuzz"
67
67
68
68
- name : Fuzz long test
69
69
working-directory : ${{github.workspace}}/build
Original file line number Diff line number Diff line change @@ -57,12 +57,11 @@ jobs:
57
57
# On RHEL/SLES, hwloc version is just a little too low.
58
58
# Skip some tests until we upgrade hwloc and update CMake to properly handle local hwloc installation.
59
59
# TODO: fix issue #560
60
- # TODO: add issue for -E test_init_teardown - it is not clear why it fails
61
60
- name : Run tests (on RHEL/SLES)
62
61
if : (matrix.os == 'rhel-9.1') || (matrix.os == 'sles-15')
63
62
working-directory : ${{github.workspace}}/build
64
63
run : |
65
- ctest --output-on-failure --test-dir test -E "test_provider_os_memory_multiple_numa_nodes|test_init_teardown "
64
+ ctest --output-on-failure --test-dir test -E "test_provider_os_memory_multiple_numa_nodes"
66
65
./test/test_provider_os_memory_multiple_numa_nodes \
67
66
--gtest_filter="-*checkModeLocal/*:*checkModePreferredEmptyNodeset/*:testNuma.checkModeInterleave"
68
67
You can’t perform that action at this time.
0 commit comments