summaryrefslogtreecommitdiff
path: root/tests/tsort
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-08-22 15:53:59 +0000
committerJim Meyering <jim@meyering.net>1999-08-22 15:53:59 +0000
commit5d3b0307987161b2d6b27c1a26291f019bb7942f (patch)
treef4290ba019cec74230db20dd82fdf0e0e68e01c8 /tests/tsort
parent19a165cc9c0606c051b12498b7a56303c688212e (diff)
downloadcoreutils-5d3b0307987161b2d6b27c1a26291f019bb7942f.tar.xz
.
Diffstat (limited to 'tests/tsort')
-rwxr-xr-xtests/tsort/Test.pm18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/tsort/Test.pm b/tests/tsort/Test.pm
deleted file mode 100755
index e066843a2..000000000
--- a/tests/tsort/Test.pm
+++ /dev/null
@@ -1,18 +0,0 @@
-# -*-perl-*-
-package Test;
-require 5.002;
-use strict;
-
-my @tv = (
-#test options input expected-output expected-return-code
-#
-["cycle-1", '', "t b\nt s\ns t\n", "FIXME", 0],
-
-);
-
-sub test_vector
-{
- return @tv;
-}
-
-1;