On May 28, 2009, at 4:12 PM, Nicolas Williams wrote:
>
>> To debug, set a breakpoint on sqlite3Fault().  That routine is called
>> whenever an OOM fault is simulated.  Run to the point of the OOM  
>> fault
>> that is causing the problem.  Figure out which malloc() is falling  
>> and
>> why the problem is not being reported back up to the top level.
>
> How would I run a single test?

You can't.  You have to run an entire test script.  Skip over the  
breakpoints prior to the point of interest.

     gdb testfixture
     br sqlite3Fault
     r ../sqlite/test/aftermalloc.test

D. Richard Hipp
d...@hwaci.com



_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to