[svn:parrot] r40388 - trunk/t/src
NotFound at svn.parrot.org
NotFound at svn.parrot.org
Sun Aug 2 15:20:06 UTC 2009
Author: NotFound
Date: Sun Aug 2 15:20:06 2009
New Revision: 40388
URL: https://trac.parrot.org/parrot/changeset/40388
Log:
[t] flush stdout before potential crashes
Modified:
trunk/t/src/extend.t
Modified: trunk/t/src/extend.t
==============================================================================
--- trunk/t/src/extend.t Sun Aug 2 14:45:49 2009 (r40387)
+++ trunk/t/src/extend.t Sun Aug 2 15:20:06 2009 (r40388)
@@ -731,6 +731,7 @@
for (i = 1; i <= niter; i++) {
printf("Starting interp %d\n", i);
+ fflush(stdout);
interp = Parrot_new(NULL);
if (!interp)
return 1;
@@ -738,6 +739,7 @@
Parrot_set_flag(interp, PARROT_DESTROY_FLAG);
printf("Destroying interp %d\n", i);
+ fflush(stdout);
interp_cleanup(interp, 0);
}
More information about the parrot-commits
mailing list