diff options
author | dormando <dormando@rydia.net> | 2018-05-24 23:57:03 -0700 |
---|---|---|
committer | dormando <dormando@rydia.net> | 2018-05-24 23:57:03 -0700 |
commit | 3b11d16b3f92c51bfedbb092147e1c2b225945ff (patch) | |
tree | 8786984d2866ddb09b23665c1b05ec6c7cf420f9 | |
parent | 3c270bb715418f51b18090fa86d30690803934db (diff) | |
download | memcached-1.5.8.tar.gz |
fix sasl tests1.5.8
apparently I broke them with the unix domain socket update, since you have to
add an environment variable for them to even run.
need to make it work with the unix socket at some point though.
-rwxr-xr-x | t/binary-sasl.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/binary-sasl.t b/t/binary-sasl.t index 85ef069..79e4836 100755 --- a/t/binary-sasl.t +++ b/t/binary-sasl.t @@ -92,7 +92,7 @@ use constant RES_MAGIC => 0x81; my $pwd=getcwd; $ENV{'SASL_CONF_PATH'} = "$pwd/t/sasl"; -my $server = new_memcached('-B binary -S '); +my $server = new_memcached('-B binary -S -l 127.0.0.1 '); my $mc = MC::Client->new; |