diff options
author | Yossi Gottlieb <yossigo@gmail.com> | 2021-01-17 15:48:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-17 15:48:48 +0200 |
commit | 522d93607a46e28b035c675fe066778c453e84ba (patch) | |
tree | 2034b84457e2b1eb9e2c56532c9f41678b595106 /tests/unit/pubsub.tcl | |
parent | f5cf1e46a4812f0616f0ce763417b8c84f035493 (diff) | |
download | redis-522d93607a46e28b035c675fe066778c453e84ba.tar.gz |
Add io-thread daily CI tests. (#8232)
This adds basic coverage to IO threads by running the cluster and few selected Redis test suite tests with the IO threads enabled.
Also provides some necessary additional improvements to the test suite:
* Add --config to sentinel/cluster tests for arbitrary configuration.
* Fix --tags whitelisting which was broken.
* Add a `network` tag to some tests that are more network intensive. This is work in progress and more tests should be properly tagged in the future.
Diffstat (limited to 'tests/unit/pubsub.tcl')
-rw-r--r-- | tests/unit/pubsub.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/pubsub.tcl b/tests/unit/pubsub.tcl index 9c7a43bf0..966565ae1 100644 --- a/tests/unit/pubsub.tcl +++ b/tests/unit/pubsub.tcl @@ -1,4 +1,4 @@ -start_server {tags {"pubsub"}} { +start_server {tags {"pubsub network"}} { proc __consume_subscribe_messages {client type channels} { set numsub -1 set counts {} |