diff options
author | Andrew Lewis <nerf@judo.za.org> | 2016-07-18 12:33:52 +0100 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2016-07-18 16:50:04 +0100 |
commit | e6ff4143d535427e2822ef5ad504f0e36b0047c0 (patch) | |
tree | 4df8597e3efb2ee60e718ffb68ffef5948b1d461 /test/functional/cases | |
parent | a75380749cb238fa71c8a9c9cf4488fe77d0510e (diff) | |
download | rspamd-e6ff4143d535427e2822ef5ad504f0e36b0047c0.tar.gz rspamd-e6ff4143d535427e2822ef5ad504f0e36b0047c0.zip |
[Test] Integrate functional tests with Travis CI
Diffstat (limited to 'test/functional/cases')
4 files changed, 4 insertions, 4 deletions
diff --git a/test/functional/cases/statistics/redis-keyed-siphash.robot b/test/functional/cases/statistics/redis-keyed-siphash.robot index f598915cd..ec95efcd1 100644 --- a/test/functional/cases/statistics/redis-keyed-siphash.robot +++ b/test/functional/cases/statistics/redis-keyed-siphash.robot @@ -4,7 +4,7 @@ Suite Teardown Redis Statistics Teardown Resource lib.robot *** Variables *** -${REDIS_SERVER} servers = "${LOCAL_ADDR}:${REDIS_PORT}" +${REDIS_SERVER} servers = "${REDIS_ADDR}:${REDIS_PORT}" ${STATS_BACKEND} redis ${STATS_HASH} hash = "siphash"; ${STATS_KEY} key = "${KEY_PVT1}"; diff --git a/test/functional/cases/statistics/redis-keyed-xxhash.robot b/test/functional/cases/statistics/redis-keyed-xxhash.robot index ca87895c5..5a7b2daf3 100644 --- a/test/functional/cases/statistics/redis-keyed-xxhash.robot +++ b/test/functional/cases/statistics/redis-keyed-xxhash.robot @@ -4,7 +4,7 @@ Suite Teardown Redis Statistics Teardown Resource lib.robot *** Variables *** -${REDIS_SERVER} servers = "${LOCAL_ADDR}:${REDIS_PORT}" +${REDIS_SERVER} servers = "${REDIS_ADDR}:${REDIS_PORT}" ${STATS_BACKEND} redis ${STATS_HASH} hash = "xxhash"; ${STATS_KEY} key = "${KEY_PVT1}"; diff --git a/test/functional/cases/statistics/redis-plain-siphash.robot b/test/functional/cases/statistics/redis-plain-siphash.robot index 2946e8903..d436b1a68 100644 --- a/test/functional/cases/statistics/redis-plain-siphash.robot +++ b/test/functional/cases/statistics/redis-plain-siphash.robot @@ -4,7 +4,7 @@ Suite Teardown Redis Statistics Teardown Resource lib.robot *** Variables *** -${REDIS_SERVER} servers = "${LOCAL_ADDR}:${REDIS_PORT}" +${REDIS_SERVER} servers = "${REDIS_ADDR}:${REDIS_PORT}" ${STATS_BACKEND} redis ${STATS_HASH} hash = "siphash"; diff --git a/test/functional/cases/statistics/redis-plain-xxhash.robot b/test/functional/cases/statistics/redis-plain-xxhash.robot index de69465f0..0c45ac16b 100644 --- a/test/functional/cases/statistics/redis-plain-xxhash.robot +++ b/test/functional/cases/statistics/redis-plain-xxhash.robot @@ -4,7 +4,7 @@ Suite Teardown Redis Statistics Teardown Resource lib.robot *** Variables *** -${REDIS_SERVER} servers = "${LOCAL_ADDR}:${REDIS_PORT}" +${REDIS_SERVER} servers = "${REDIS_ADDR}:${REDIS_PORT}" ${STATS_BACKEND} redis ${STATS_HASH} hash = "xxhash"; |