aboutsummaryrefslogtreecommitdiff
path: root/tests/libtest/test75.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libtest/test75.pl')
-rwxr-xr-xtests/libtest/test75.pl13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/libtest/test75.pl b/tests/libtest/test75.pl
new file mode 100755
index 000000000..01a53ff15
--- /dev/null
+++ b/tests/libtest/test75.pl
@@ -0,0 +1,13 @@
+#!/usr/bin/env perl
+# Check that the length of a given URL is correct
+if ( $#ARGV != 1 )
+{
+ print "Usage: $0 string length\n";
+ exit 3;
+}
+if (length(@ARGV[0]) != @ARGV[1])
+{
+ print "Given host IP and port not supported\n";
+ exit 1;
+}
+exit 0;