summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-06-18 08:45:02 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-06-18 13:59:49 +0200
commitc888e3f6cee3ee28bf238184605b7516b00db737 (patch)
treef50aec837bcf0189049c3c36b360fa2c6d309f35
parentada7bd119179af1c7e206579c86ec6ea1b72996c (diff)
downloadcurl-c888e3f6cee3ee28bf238184605b7516b00db737.tar.gz
test1179: verify error message for non-existing cmdline option
-rw-r--r--tests/data/Makefile.inc2
-rw-r--r--tests/data/test117943
2 files changed, 44 insertions, 1 deletions
diff --git a/tests/data/Makefile.inc b/tests/data/Makefile.inc
index 4ce9e7420..d6f7915be 100644
--- a/tests/data/Makefile.inc
+++ b/tests/data/Makefile.inc
@@ -139,7 +139,7 @@ test1160 test1161 test1162 test1163 test1164 test1165 test1166 test1167 \
test1168 \
\
test1170 test1171 test1172 test1173 test1174 test1175 test1176 test1177 \
-test1178 \
+test1178 test1179 \
\
test1190 test1191 test1192 test1193 test1194 test1195 test1196 \
\
diff --git a/tests/data/test1179 b/tests/data/test1179
new file mode 100644
index 000000000..206ee7cae
--- /dev/null
+++ b/tests/data/test1179
@@ -0,0 +1,43 @@
+<testcase>
+<info>
+<keywords>
+cmdline
+wrong option
+</keywords>
+</info>
+
+#
+# Server-side
+<reply>
+</reply>
+
+#
+# Client-side
+<client>
+<server>
+none
+</server>
+# make this test require manual as the error message is different without it
+<features>
+manual
+</features>
+<name>
+error when using unknown command line option
+</name>
+<command>
+--never-implemented http://never.use.this.example.com/1179
+</command>
+</client>
+
+#
+# Verify data after the test has been "shot"
+<verify>
+<errorcode>
+2
+</errorcode>
+<stderr mode="text">
+curl: option --never-implemented: is unknown
+curl: try 'curl --help' or 'curl --manual' for more information
+</stderr>
+</verify>
+</testcase>