Received: from cathode-dark-space.mit.edu (CATHODE-DARK-SPACE.MIT.EDU [18.18.1.96]) by krbdev.mit.edu (8.9.3p2) with ESMTP id LAA18270; Fri, 26 Sep 2003 11:34:45 -0400 (EDT) Received: (from tlyu@localhost) by cathode-dark-space.mit.edu (8.12.9) id h8QFYjXS023666; Fri, 26 Sep 2003 11:34:45 -0400 (EDT) To: rt@krbdev.mit.edu Subject: Re: [krbdev.mit.edu #1792] sparc-solaris9 nightly build test failures: kadm5 api References: From: Tom Yu Date: Fri, 26 Sep 2003 11:34:45 -0400 In-Reply-To: ("Ken Raeburn via RT"'s message of "Thu, 25 Sep 2003 17:40:40 -0400 (EDT)") Message-Id: Lines: 24 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii RT-Send-Cc: X-RT-Original-Encoding: us-ascii Content-Length: 568 >>>>> "Ken" == Ken Raeburn via RT writes: Ken> Could you send (or attach in RT) the test script? If we can't figure Ken> this out here, we should report it to Don Libes and see if he knows Ken> anything. Sun knows about this problem. It's Bug ID 4927647 in their database, "pty loses last output before close/exit". My test script follows: for { set i 1 } { 1 } { incr i } { spawn echo foobarbaz expect { "foobarbaz" { puts "ok" expect eof wait } eof { puts "$i passes" wait exit 1 } } }