summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjluehrs2 <jluehrs2@uiuc.edu>2007-08-17 18:28:06 -0500
committerjluehrs2 <jluehrs2@uiuc.edu>2007-08-17 18:28:06 -0500
commite1eb58c9f23ad9abab163c182a223caf053d7d87 (patch)
tree3d8702ae997e749d933f28f26c71c9af862410e0
parentaad5550b0b3450dc661f6ea124930caabd0f930b (diff)
downloadio-pty-easy-e1eb58c9f23ad9abab163c182a223caf053d7d87.tar.gz
io-pty-easy-e1eb58c9f23ad9abab163c182a223caf053d7d87.zip
comment formatting
-rw-r--r--t/010-read-write.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/010-read-write.t b/t/010-read-write.t
index fdc1bb6..a7ad8c7 100644
--- a/t/010-read-write.t
+++ b/t/010-read-write.t
@@ -10,5 +10,6 @@ $pty->spawn("$^X -ple ''");
$pty->write("testing\n");
like($pty->read, qr/testing/, "basic read/write testing");
# if the perl script ends with a subprocess still running, the test will exit
-# with the exit status of the signal that the subprocess dies with, so we have to wait for the subprocess to finish before exiting.
+# with the exit status of the signal that the subprocess dies with, so we have
+# to kill the subprocess before exiting.
$pty->kill;