Changeset 74180 in vbox
- Timestamp:
- Sep 10, 2018 10:47:47 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/testcase/tstRTJson.cpp
r74179 r74180 33 33 #include <iprt/test.h> 34 34 35 static const char *g_pszJson = 35 36 /********************************************************************************************************************************* 37 * Global Variables * 38 *********************************************************************************************************************************/ 39 static const char g_szJson[] = 36 40 "{\n" 37 41 " \"integer\": 100,\n" … … 308 312 309 313 RTJSONVAL hJsonVal = NIL_RTJSONVAL; 310 RTTEST_CHECK_RC_OK_RETV(hTest, RTJsonParseFromString(&hJsonVal, g_ pszJson, NULL));314 RTTEST_CHECK_RC_OK_RETV(hTest, RTJsonParseFromString(&hJsonVal, g_szJson, NULL)); 311 315 312 316 if (hJsonVal != NIL_RTJSONVAL)
Note:
See TracChangeset
for help on using the changeset viewer.