Changeset 103262 in vbox for trunk/include/iprt/test.h
- Timestamp:
- Feb 8, 2024 12:00:32 AM (14 months ago)
- svn:sync-xref-src-repo-rev:
- 161553
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/test.h
r98103 r103262 421 421 422 422 /** 423 * Starts a sub-sub-test. 424 * 425 * This will perform an implicit RTTestSubSubDone() call if that has not been 426 * done since the last RTTestSubSub() call. 427 * 428 * @returns Number of chars printed. 429 * @param hTest The test handle. If NIL_RTTEST we'll use the one 430 * associated with the calling thread. 431 * @param pszSubSubTest The sub-sub-test name. 432 */ 433 RTR3DECL(int) RTTestSubSub(RTTEST hTest, const char *pszSubSubTest); 434 435 /** 436 * Format string version of RTTestSubSub(). 437 * 438 * See RTTestSubSub() for details. 439 * 440 * @returns Number of chars printed. 441 * @param hTest The test handle. If NIL_RTTEST we'll use the one 442 * associated with the calling thread. 443 * @param pszSubSubTestFmt The sub-sub-test name format string. 444 * @param ... Arguments. 445 */ 446 RTR3DECL(int) RTTestSubSubF(RTTEST hTest, const char *pszSubSubTestFmt, ...) RT_IPRT_FORMAT_ATTR(2, 3); 447 448 /** 449 * Format string version of RTTestSubSub(). 450 * 451 * See RTTestSubSub() for details. 452 * 453 * @returns Number of chars printed. 454 * @param hTest The test handle. If NIL_RTTEST we'll use the one 455 * associated with the calling thread. 456 * @param pszSubSubTestFmt The sub-sub-test name format string. 457 * @param va Arguments. 458 */ 459 RTR3DECL(int) RTTestSubSubV(RTTEST hTest, const char *pszSubSubTestFmt, va_list va) RT_IPRT_FORMAT_ATTR(2, 0); 460 461 /** 462 * Completes a sub-sub-test. 463 * 464 * @returns Number of chars printed, negative numbers are IPRT error codes. 465 * @param hTest The test handle. If NIL_RTTEST we'll use the one 466 * associated with the calling thread. 467 */ 468 RTR3DECL(int) RTTestSubSubDone(RTTEST hTest); 469 470 /** 423 471 * Prints an extended PASSED message, optional. 424 472 * 425 * This does not conclude the sub-test, it could be used to report the passing426 * of a sub-sub-to-the-power-of-N-test.473 * This does not conclude the (sub-)sub-test, it could be used to report the 474 * passing of a sub-sub-to-the-power-of-N-test. 427 475 * 428 476 * @returns Number of chars printed, negative numbers are IPRT error codes. … … 437 485 * Prints an extended PASSED message, optional. 438 486 * 439 * This does not conclude the sub-test, it could be used to report the passing440 * of a sub-sub-to-the-power-of-N-test.487 * This does not conclude the (sub-)sub-test, it could be used to report the 488 * passing of a sub-sub-to-the-power-of-N-test. 441 489 * 442 490 * @returns Number of chars printed, negative numbers are IPRT error codes. … … 556 604 * This is typically used for benchmarking but can be used for other purposes 557 605 * like reporting limits of some implementation. The value gets associated with 558 * the current sub test, the name must be unique within the sub test. 606 * the current (sub-)sub-test, the name must be unique within the 607 * (sub-)sub-test. 559 608 * 560 609 * @returns IPRT status code. … … 617 666 618 667 /** 619 * Get the error count of the current sub 668 * Get the error count of the current sub-test. 620 669 * 621 670 * @returns The error counter, UINT32_MAX if no valid test handle. … … 624 673 */ 625 674 RTR3DECL(uint32_t) RTTestSubErrorCount(RTTEST hTest); 675 676 /** 677 * Get the error count of the current sub-sub-test. 678 * 679 * @returns The error counter, UINT32_MAX if no valid test handle. 680 * @param hTest The test handle. If NIL_RTTEST we'll use the one 681 * associated with the calling thread. 682 */ 683 RTR3DECL(uint32_t) RTTestSubSubErrorCount(RTTEST hTest); 626 684 627 685 /** … … 1024 1082 1025 1083 /** 1026 * Completes a sub-test .1084 * Completes a sub-test (and any outstanding sub-sub-test). 1027 1085 * 1028 1086 * @returns Number of chars printed. … … 1031 1089 1032 1090 /** 1091 * Starts a sub-sub-test. 1092 * 1093 * This will perform an implicit RTTestSubSubDone() call if that has not been 1094 * done since the last RTTestSubSub call. 1095 * 1096 * @returns Number of chars printed. 1097 * @param pszSubSubTest The sub-sub-test name. 1098 */ 1099 RTR3DECL(int) RTTestISubSub(const char *pszSubSubTest); 1100 1101 /** 1102 * Format string version of RTTestSubSub. 1103 * 1104 * See RTTestSubSub for details. 1105 * 1106 * @returns Number of chars printed. 1107 * @param pszSubSubTestFmt The sub-sub-test name format string. 1108 * @param ... Arguments. 1109 */ 1110 RTR3DECL(int) RTTestISubSubF(const char *pszSubSubTestFmt, ...) RT_IPRT_FORMAT_ATTR(1, 2); 1111 1112 /** 1113 * Format string version of RTTestSubSub. 1114 * 1115 * See RTTestSubSub for details. 1116 * 1117 * @returns Number of chars printed. 1118 * @param pszSubSubTestFmt The sub-sub-test name format string. 1119 * @param va Arguments. 1120 */ 1121 RTR3DECL(int) RTTestISubSubV(const char *pszSubSubTestFmt, va_list va) RT_IPRT_FORMAT_ATTR(1, 0); 1122 1123 /** 1124 * Completes a sub-sub-test. 1125 * 1126 * @returns Number of chars printed. 1127 */ 1128 RTR3DECL(int) RTTestISubSubDone(void); 1129 1130 /** 1033 1131 * Prints an extended PASSED message, optional. 1034 1132 * 1035 * This does not conclude the sub-test, it could be used to report the passing1036 * of a sub-sub-to-the-power-of-N-test.1133 * This does not conclude the (sub-)sub-test, it could be used to report the 1134 * passing of a sub-sub-to-the-power-of-N-test. 1037 1135 * 1038 1136 * @returns IPRT status code. … … 1045 1143 * Prints an extended PASSED message, optional. 1046 1144 * 1047 * This does not conclude the sub-test, it could be used to report the passing1048 * of a sub-sub-to-the-power-of-N-test.1145 * This does not conclude the (sub-)sub-test, it could be used to report the 1146 * passing of a sub-sub-to-the-power-of-N-test. 1049 1147 * 1050 1148 * @returns IPRT status code. … … 1059 1157 * This is typically used for benchmarking but can be used for other purposes 1060 1158 * like reporting limits of some implementation. The value gets associated with 1061 * the current sub test, the name must be unique within the sub test. 1159 * the current (sub-)sub-test, the name must be unique within the 1160 * (sub-)sub-test. 1062 1161 * 1063 1162 * @returns IPRT status code.
Note:
See TracChangeset
for help on using the changeset viewer.