File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ jobs:
125125 run : CFLAGS='-Werror' ./runtest-moduleapi --single unit/moduleapi/dummy-flaky --failures-json test-failures/moduleapi.json --verbose --dump-logs ${{github.event.inputs.test_args}}
126126 - name : sentinel tests
127127 if : true && !contains(github.event.inputs.skiptests, 'sentinel')
128- run : ./runtest-sentinel --failures-json test-failures/sentinel.json ${{github.event.inputs.cluster_test_args}}
128+ run : ./runtest-sentinel --single dummy -- failures-json test-failures/sentinel.json ${{github.event.inputs.cluster_test_args}}
129129 - name : cluster tests
130130 if : true && !contains(github.event.inputs.skiptests, 'cluster')
131131 run : ./runtest-cluster --failures-json test-failures/cluster.json ${{github.event.inputs.cluster_test_args}}
@@ -1925,7 +1925,7 @@ jobs:
19251925 run : CFLAGS='-Werror' ./runtest-moduleapi --single unit/moduleapi/dummy-flaky --failures-json test-failures/moduleapi.json --log-req-res --no-latency --dont-clean --force-resp3 --dont-pre-clean --verbose --dump-logs ${{github.event.inputs.test_args}}
19261926 - name : sentinel tests
19271927 if : true && !contains(github.event.inputs.skiptests, 'sentinel')
1928- run : ./runtest-sentinel --failures-json test-failures/sentinel.json --log-req-res --dont-clean --force-resp3 ${{github.event.inputs.cluster_test_args}}
1928+ run : ./runtest-sentinel --single dummy -- failures-json test-failures/sentinel.json --log-req-res --dont-clean --force-resp3 ${{github.event.inputs.cluster_test_args}}
19291929 - name : cluster tests
19301930 if : true && !contains(github.event.inputs.skiptests, 'cluster')
19311931 run : ./runtest-cluster --failures-json test-failures/cluster.json --log-req-res --dont-clean --force-resp3 ${{github.event.inputs.cluster_test_args}}
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ test "Create a 5 nodes cluster" {
1010}
1111
1212test " Cluster is up" {
13- assert_cluster_state ok
13+ assert_cluster_state okk
1414}
1515
1616set iterations 20
Original file line number Diff line number Diff line change 1+ test " sentinel-dummy - basic ping" {
2+ assert_equal {PONG} [S 0 PING]
3+ }
4+
5+ # test "sentinel-dummy - intentional failure" {
6+ # assert_equal "wrong" [S 0 PING]
7+ # }
8+
9+ test " sentinel-dummy - another passing test" {
10+ assert_equal {PONG} [S 1 PING]
11+ }
You can’t perform that action at this time.
0 commit comments