diff options
author | Max Dymond <max.dymond@metaswitch.com> | 2017-06-26 16:46:53 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-06-30 11:34:05 +0200 |
commit | 9b387034ab5d0d98d1ef4b6c2d0d8cd2185081fb (patch) | |
tree | eec2e4f19f47133029fa6bc3806a9f33bd3d054a /tests/serverhelp.pm | |
parent | 77970f484da672df96bfea5f9a3b76db00a377dc (diff) | |
download | curl-9b387034ab5d0d98d1ef4b6c2d0d8cd2185081fb.tar.gz |
test1450: add simple testing for DICT
Add a new server which provides a DICT interface. This is intended to
begin coverage testing for lib/dict.c
Closes #1615
Diffstat (limited to 'tests/serverhelp.pm')
-rw-r--r-- | tests/serverhelp.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/serverhelp.pm b/tests/serverhelp.pm index d6a06508d..c4fd0fc61 100644 --- a/tests/serverhelp.pm +++ b/tests/serverhelp.pm @@ -105,7 +105,7 @@ sub servername_str { $proto = uc($proto) if($proto); die "unsupported protocol: '$proto'" unless($proto && - ($proto =~ /^(((FTP|HTTP|HTTP\/2|IMAP|POP3|SMTP|HTTP-PIPE)S?)|(TFTP|SFTP|SOCKS|SSH|RTSP|GOPHER|HTTPTLS))$/)); + ($proto =~ /^(((FTP|HTTP|HTTP\/2|IMAP|POP3|SMTP|HTTP-PIPE)S?)|(TFTP|SFTP|SOCKS|SSH|RTSP|GOPHER|HTTPTLS|DICT))$/)); $ipver = (not $ipver) ? 'ipv4' : lc($ipver); die "unsupported IP version: '$ipver'" unless($ipver && |