mirror of
https://github.com/json-c/json-c.git
synced 2026-04-02 03:49:06 +08:00
Merge pull request #547 from dota17/assert_test
modify json-c default build type, and fix up the assert() errors in t…
This commit is contained in:
@@ -52,8 +52,3 @@ target_link_libraries(
|
||||
|
||||
endforeach(TESTNAME)
|
||||
|
||||
# Make sure NDEBUG is always undefined for tests
|
||||
if (UNIX OR MINGW OR CYGWIN)
|
||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -UNDEBUG")
|
||||
endif()
|
||||
|
||||
|
||||
@@ -2,6 +2,9 @@
|
||||
#include <stdlib.h>
|
||||
#include <stddef.h>
|
||||
#include <string.h>
|
||||
#ifdef NDEBUG
|
||||
#undef NDEBUG
|
||||
#endif
|
||||
#include <assert.h>
|
||||
#include <errno.h>
|
||||
#include <time.h>
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
#include "strerror_override.h"
|
||||
#include "strerror_override_private.h"
|
||||
#ifdef NDEBUG
|
||||
#undef NDEBUG
|
||||
#endif
|
||||
#include <assert.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
Reference in New Issue
Block a user