Bug 4244 - funit --gc -- run the garbage collector after each test
Summary: funit --gc -- run the garbage collector after each test
Status: NEW
Alias: None
Product: frysk
Classification: Unclassified
Component: general (show other bugs)
Version: unspecified
: P2 normal
Target Milestone: ---
Assignee: Unassigned
URL:
Keywords:
Depends on:
Blocks: 2242
  Show dependency treegraph
 
Reported: 2007-03-21 20:37 UTC by Andrew Cagney
Modified: 2007-03-21 20:37 UTC (History)
0 users

See Also:
Host:
Target:
Build:
Last reconfirmed:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Andrew Cagney 2007-03-21 20:37:11 UTC
Often there are memory corruption bugs triggered by garbage collection.

Being able to force a garbage collection after each bug would help more quickly
narrow that down.

NB: Triggering a GC is non-trivial, the sequence:
  System.gc(); // please garbage collect when you have a mo'
  Thread.wait (100); // here's a mo'.
works relatively well.