File tree Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 3434 uses : actions/checkout@v2
3535 - name : " build CacheLib using build script"
3636 run : ./contrib/build.sh -j -v -T
37+ - name : " run tests"
38+ timeout-minutes : 60
39+ run : cd opt/cachelib/tests && ../../../run_tests.sh
Original file line number Diff line number Diff line change 3838 uses : actions/checkout@v2
3939 - name : " build CacheLib using build script"
4040 run : ./contrib/build.sh -j -v -T
41+ - name : " run tests"
42+ timeout-minutes : 60
43+ run : cd opt/cachelib/tests && ../../../run_tests.sh
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ # Newline separated list of tests to ignore
4+ BLACKLIST=" allocator-test-AllocationClassTest
5+ allocator-test-NvmCacheTests
6+ common-test-TimeTests
7+ common-test-UtilTests
8+ shm-test-test_page_size"
9+
10+ find -type f \( -not -name " *bench*" -and -not -name " navy*" \) -executable | grep -vF " $BLACKLIST " | xargs -n1 bash -c
You can’t perform that action at this time.
0 commit comments