Changeset 368
- Timestamp:
- Jun 22, 2008, 9:39:01 PM (17 years ago)
- Location:
- trunk/tests
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/Makefile.kmk
r361 r368 25 25 idl/aclass.idl \ 26 26 idl/bclass.idl \ 27 idl/testnomclassmgr.idl \ 27 28 idl/testnomobject.idl \ 28 29 class_c/aclass.c \ 29 30 class_c/bclass.c \ 31 class_c/testnomclassmgr.c \ 30 32 class_c/testnomobject.c 31 33 libtest_SOURCES.os2 = \ -
trunk/tests/c/test-nom.c
r363 r368 69 69 #include "nomtestresult.h" 70 70 #include "testnomobject.h" 71 #include "testnomclassmgr.h" 71 72 72 73 … … 243 244 NOMArray* nArray; 244 245 TestNomObject* tstNomObject; 246 TestNOMClassMgr* tstNOMClassMgr; 245 247 int a; 246 248 … … 305 307 306 308 nomPrintf("\n"); 307 g_message("Testing NOMObject"); 309 g_message("================================================================"); 310 g_message("===== Testing NOMObject base class ====="); 311 g_message("================================================================"); 308 312 tstNomObject=TestNomObjectNew(); 309 313 _setClassMgrObject(tstNomObject, NOMClassMgrObject, NULL); … … 311 315 nomPrintf("\n"); 312 316 printTestResults(nArray); 317 318 nomPrintf("\n"); 319 g_message("================================================================"); 320 g_message("===== Testing NOMClassMgr base class ====="); 321 g_message("================================================================"); 322 tstNOMClassMgr=TestNOMClassMgrNew(); 323 _setClassMgrObject(tstNOMClassMgr, NOMClassMgrObject, NULL); 324 nArray=_runTests(tstNOMClassMgr, NULL); 325 nomPrintf("\n"); 326 printTestResults(nArray); 313 327 314 328 return 0; -
trunk/tests/exports.def
r361 r368 15 15 _TestNomObjectCClassData 16 16 TestNomObjectNewClass 17 18 _TestNOMClassMgrClassData 19 _TestNOMClassMgrCClassData 20 TestNOMClassMgrNewClass
Note:
See TracChangeset
for help on using the changeset viewer.