summaryrefslogtreecommitdiff
path: root/t/comp.term
diff options
context:
space:
mode:
Diffstat (limited to 't/comp.term')
-rw-r--r--t/comp.term5
1 files changed, 3 insertions, 2 deletions
diff --git a/t/comp.term b/t/comp.term
index 83cce45cbd..497b8042c3 100644
--- a/t/comp.term
+++ b/t/comp.term
@@ -1,10 +1,10 @@
#!./perl
-# $Header: comp.term,v 1.0 87/12/18 13:12:40 root Exp $
+# $Header: comp.term,v 2.0 88/06/05 00:12:52 root Exp $
# tests that aren't important enough for base.term
-print "1..9\n";
+print "1..10\n";
$x = "\\n";
print "#1\t:$x: eq " . ':\n:' . "\n";
@@ -24,4 +24,5 @@ if (length("$one\\n") == 3) {print "ok 6\n";} else {print "not ok 6\n";}
if (length("$one\\\n") == 3) {print "ok 7\n";} else {print "not ok 7\n";}
if (length("\\n$one") == 3) {print "ok 8\n";} else {print "not ok 8\n";}
if (length("\\\n$one") == 3) {print "ok 9\n";} else {print "not ok 9\n";}
+if (length("\\${one}") == 2) {print "ok 10\n";} else {print "not ok 10\n";}