From: Jarkko Hietaniemi Date: Thu, 10 Apr 2003 09:40:24 +0000 (+0000) Subject: A temporary debugging aid for Tru64 threaded builds. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=790ba596c6d6bdfed3963f81274a142946aca12a;p=p5sagit%2Fp5-mst-13.2.git A temporary debugging aid for Tru64 threaded builds. p4raw-id: //depot/perl@19182 --- diff --git a/ext/B/t/deparse.t b/ext/B/t/deparse.t index f60d913..50746e7 100644 --- a/ext/B/t/deparse.t +++ b/ext/B/t/deparse.t @@ -119,7 +119,12 @@ $b =~ s/(LINE:)/sub BEGIN { 'XL'->bootstrap; } $1/ if $Is_MacOS; -print "# [$a]\n\# vs expected\n# [$b]\nnot " if $a ne $b; +if ($a ne $b) { + # A temporary debugging aid (Tru64 threaded smoke test somehow + # broke between 19150 and 19160, but works okay from command line.) + print STDERR "# [$a]\n\# vs expected\n# [$b]\n"; + print "not "; +} print "ok " . $i++ . "\n"; __DATA__