summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--memtaint.pl14
1 files changed, 0 insertions, 14 deletions
diff --git a/memtaint.pl b/memtaint.pl
deleted file mode 100644
index 54072dc49..000000000
--- a/memtaint.pl
+++ /dev/null
@@ -1,14 +0,0 @@
-use Cache::Memcached::Fast;
-use Devel::Peek;
-
-my $mc = Cache::Memcached::Fast->new( { servers => ['127.0.0.1:11211'] });
-
-my $v=[$ENV{PATH}];
-
-Dump($v->[0]);
-
-$mc->set("taint", $v);
-
-Dump($v->[0]);
-
-Dump($mc->get("taint")->[0]);