From: <svn...@op...> - 2009-03-17 15:36:15
|
Author: bellmich Date: Tue Mar 17 16:35:50 2009 New Revision: 984 URL: http://libsyncml.opensync.org/changeset/984 Log: try to fix core dump on Solaris Modified: trunk/tests/support.h Modified: trunk/tests/support.h ============================================================================== --- trunk/tests/support.h Tue Mar 17 16:00:49 2009 (r983) +++ trunk/tests/support.h Tue Mar 17 16:35:50 2009 (r984) @@ -51,8 +51,9 @@ g_static_mutex_lock(&__libsyncml_check_mutex);\ fail_unless(_result, ## __VA_ARGS__);\ g_static_mutex_unlock(&__libsyncml_check_mutex);\ - if (!_result) smlAssertMsg(0, g_strdup_printf(__VA_ARGS__));\ } + // disabled to avoid unwanted aborts + // if (!_result) smlAssertMsg(0, g_strdup_printf(__VA_ARGS__));\ #endif /* THREAD_SAFE_CHECK */ |