X-Git-Url: https://git.sven.stormbind.net/?a=blobdiff_plain;f=tests%2Fstrerror.tcl;fp=tests%2Fstrerror.tcl;h=2cfb41d07161a5040ba221aa805fe4f1946d09d5;hb=b0e6fb6e4379fb87fa2854b84a56c5ad49c644da;hp=0000000000000000000000000000000000000000;hpb=c9a5bcd9d76f699909b24e71a2a216d36062ab0b;p=sven%2Ftclcurl.git diff --git a/tests/strerror.tcl b/tests/strerror.tcl new file mode 100755 index 0000000..2cfb41d --- /dev/null +++ b/tests/strerror.tcl @@ -0,0 +1,14 @@ +package require TclCurl + +puts "The error string for code 6 is '[curl::easystrerror 6]'" + +puts "If the number is too big: '[curl::easystrerror 2000]'" + +puts "It works the same way for the multi interface: '[curl::multistrerror 1]'" +puts "And the share interface: '[curl::sharestrerror 1]'" + +catch {curl::easystrerror frelled} errorMsg +puts "And if we use a nonsensical code: '$errorMsg'" + +catch {curl::sharestrerror} errorMsg +puts "And if we forget the error code:\n '$errorMsg'"