redict/tests/support
Oran Agra 36b9494385
testsuite may leave servers alive on error (#7549)
in cases where you have
test name {
  start_server {
    start_server {
      assert
    }
  }
}

the exception will be thrown to the test proc, and the servers are
supposed to be killed on the way out. but it seems there was always a
bug of not cleaning the server stack, and recently (#7404) we started
relying on that stack in order to kill them, so with that bug sometimes
we would have tried to kill the same server twice, and leave one alive.

luckly, in most cases the pattern is:
start_server {
  test name {
  }
}
2020-07-21 16:56:19 +03:00
..
cli.tcl TLS: Connections refactoring and TLS support. 2019-10-07 21:06:13 +03:00
cluster.tcl Handle keys with hash tag when computing hash slot using tcl cluster client. 2020-05-11 13:14:18 +08:00
redis.tcl TLS: Configuration options. 2019-10-07 21:07:27 +03:00
server.tcl testsuite may leave servers alive on error (#7549) 2020-07-21 16:56:19 +03:00
test.tcl runtest --stop pause stops before terminating the redis server (#7513) 2020-07-13 16:09:08 +03:00
tmpfile.tcl Initial implementation of a client-server parallel testing system for Redis in order to speedup execution of the test suite. 2011-07-10 23:25:48 +02:00
util.tcl Fix deprecated tail syntax in tests (#7543) 2020-07-21 09:07:54 +03:00