Ignore:
Timestamp:
Mar 28, 2009, 11:49:49 AM (16 years ago)
Author:
cinc
Message:

Fix for build break on Linux. Now using a more portable function call. Fix for broken garbage collector on linux by using the system gc (tested with gentoo). Thanks to Doodle for looking into this.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/nom/class_c/nomtestcase.c

    r373 r389  
    8282
    8383    /* Only Methods starting with ˚test˚ are run. */
    84     if(0!=strnstr( methodName, "test", 4))
     84    if(strstr(methodName, "test")==methodName)
    8585    {
    8686      NOMTestResult* nResult=NOMTestResultNew();
Note: See TracChangeset for help on using the changeset viewer.