You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by st...@apache.org on 2014/02/10 10:24:02 UTC

svn commit: r1566538 - /perl/modperl/branches/httpd24threading/t/protocol/echo_timeout.t

Author: stevehay
Date: Mon Feb 10 09:24:01 2014
New Revision: 1566538

URL: http://svn.apache.org/r1566538
Log:
Fix received/expected order in echo_timeout.t.
This test currently fails on Windows with httpd-2.4.6, receiving nothing when "good bye cruel world" was expected.

Modified:
    perl/modperl/branches/httpd24threading/t/protocol/echo_timeout.t

Modified: perl/modperl/branches/httpd24threading/t/protocol/echo_timeout.t
URL: http://svn.apache.org/viewvc/perl/modperl/branches/httpd24threading/t/protocol/echo_timeout.t?rev=1566538&r1=1566537&r2=1566538&view=diff
==============================================================================
--- perl/modperl/branches/httpd24threading/t/protocol/echo_timeout.t (original)
+++ perl/modperl/branches/httpd24threading/t/protocol/echo_timeout.t Mon Feb 10 09:24:01 2014
@@ -17,5 +17,5 @@ ok $socket;
 for (@test_strings) {
     print $socket "$_\n";
     chomp(my $reply = <$socket>||'');
-    ok t_cmp($_, $reply);
+    ok t_cmp($reply, $_);
 }