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 34
34
uses : actions/checkout@v2
35
35
- name : " build CacheLib using build script"
36
36
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 38
38
uses : actions/checkout@v2
39
39
- name : " build CacheLib using build script"
40
40
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