summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-06-11 16:14:15 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-06-11 16:14:15 +0000
commit2acc30eead0f8653c7266e0d9365ece41f2f458f (patch)
tree2c05133e44f3509134891e64958cdfac123b023d
parent5e48356627d0ef216c8c44ff8b7f13b2e292127e (diff)
add sleep.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28287 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--test/io/console/test_io_console.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/io/console/test_io_console.rb b/test/io/console/test_io_console.rb
index 7d919c758c..ba363c637c 100644
--- a/test/io/console/test_io_console.rb
+++ b/test/io/console/test_io_console.rb
@@ -20,7 +20,9 @@ class TestIO_Console < Test::Unit::TestCase
PTY.open {|m, s|
assert(s.echo?)
m.print "a\n"
+ sleep 0.1
s.print "b\n"
+ sleep 0.1
assert_equal("a\r\nb\r\n", m.readpartial(10))
assert_equal("a\n", s.readpartial(10))
s.noecho {
@@ -32,7 +34,9 @@ class TestIO_Console < Test::Unit::TestCase
}
assert(s.echo?)
m.print "a\n"
+ sleep 0.1
s.print "b\n"
+ sleep 0.1
assert_equal("a\r\nb\r\n", m.readpartial(10))
assert_equal("a\n", s.readpartial(10))
}
@@ -42,7 +46,9 @@ class TestIO_Console < Test::Unit::TestCase
PTY.open {|m, s|
assert(s.echo?)
m.print "a\n"
+ sleep 0.1
s.print "b\n"
+ sleep 0.1
assert_equal("a\r\nb\r\n", m.readpartial(10))
assert_equal("a\n", s.readpartial(10))
s.echo = false
@@ -54,7 +60,9 @@ class TestIO_Console < Test::Unit::TestCase
s.echo = true
assert(s.echo?)
m.print "a\n"
+ sleep 0.1
s.print "b\n"
+ sleep 0.1
assert_equal("a\r\nb\r\n", m.readpartial(10))
assert_equal("a\n", s.readpartial(10))
}
@@ -63,8 +71,11 @@ class TestIO_Console < Test::Unit::TestCase
def test_iflush
PTY.open {|m, s|
m.print "a\n"
+ sleep 0.1
s.iflush
+ sleep 0.1
m.print "b\n"
+ sleep 0.1
assert_equal("a\r\nb\r\n", m.readpartial(10))
assert_equal("b\n", s.readpartial(10))
}