This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Make extensions in ext run their tests from the extension's own directory.
[perl5.git] / t / lib / dprof / test1_t
diff --git a/t/lib/dprof/test1_t b/t/lib/dprof/test1_t
deleted file mode 100644 (file)
index d504cd5..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-sub foo {
-       print "in sub foo\n";
-       bar();
-}
-
-sub bar {
-       print "in sub bar\n";
-}
-
-sub baz {
-       print "in sub baz\n";
-       bar();
-       foo();
-}
-
-bar();
-baz();
-foo();