aboutsummaryrefslogtreecommitdiff
path: root/tests/libtest/mk580.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libtest/mk580.pl')
-rw-r--r--tests/libtest/mk580.pl18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/libtest/mk580.pl b/tests/libtest/mk580.pl
deleted file mode 100644
index 8dc6d57b8..000000000
--- a/tests/libtest/mk580.pl
+++ /dev/null
@@ -1,18 +0,0 @@
-open(S, '<', $ARGV[0]);
-
-print <<EOF
-#include "curl/curl.h"
-
-int test[] = {
-EOF
- ;
-while(<S>) {
- my @a=split(/ +/);
- chomp $a[0];
- chomp $a[3];
- if($a[0] && !$a[3]) {
- printf("%s,\n", $a[0]);
- }
-}
-print "};\n";
-close(S);