1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319
|
/** @file
* IPRT - Testcase Framework.
*/
/*
* Copyright (C) 2009-2013 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*/
#ifndef ___iprt_test_h
#define ___iprt_test_h
#include <iprt/cdefs.h>
#include <iprt/types.h>
#include <iprt/stdarg.h>
#include <iprt/assert.h>
RT_C_DECLS_BEGIN
/** @defgroup grp_rt_test RTTest - Testcase Framework.
* @ingroup grp_rt
* @{
*/
/** A test handle. */
typedef R3PTRTYPE(struct RTTESTINT *) RTTEST;
/** A pointer to a test handle. */
typedef RTTEST *PRTTEST;
/** A const pointer to a test handle. */
typedef RTTEST const *PCRTTEST;
/** A NIL Test handle. */
#define NIL_RTTEST ((RTTEST)0)
/**
* Test message importance level.
*/
typedef enum RTTESTLVL
{
/** Invalid 0. */
RTTESTLVL_INVALID = 0,
/** Message should always be printed. */
RTTESTLVL_ALWAYS,
/** Failure message. */
RTTESTLVL_FAILURE,
/** Sub-test banner. */
RTTESTLVL_SUB_TEST,
/** Info message. */
RTTESTLVL_INFO,
/** Debug message. */
RTTESTLVL_DEBUG,
/** The last (invalid). */
RTTESTLVL_END
} RTTESTLVL;
/**
* Creates a test instance.
*
* @returns IPRT status code.
* @param pszTest The test name.
* @param phTest Where to store the test instance handle.
*/
RTR3DECL(int) RTTestCreate(const char *pszTest, PRTTEST phTest);
/** @name RTTEST_C_XXX - Flags for RTTestCreateEx.
* @{ */
/** Whether to check the IPRT_TEST_XXX variables when constructing the
* instance. The following environment variables get checks:
*
* - IPRT_TEST_MAX_LEVEL: String value indicating which level.
* The env. var. is applied if the program specified the default level
* (by passing RTTESTLVL_INVALID).
*
* - IPRT_TEST_PIPE: The native pipe/fifo handle to write XML
* results to.
* The env. var. is applied if iNativeTestPipe is -1.
*
* - IPRT_TEST_FILE: Path to file/named-pipe/fifo/whatever to
* write XML results to.
* The env. var. is applied if the program specified a NULL path, it is
* not applied if the program hands us an empty string.
*
* - IPRT_TEST_OMIT_TOP_TEST: If present, this makes the XML output omit
* the top level test element.
* The env. var is applied when present.
*
*/
#define RTTEST_C_USE_ENV RT_BIT(0)
/** Whether to omit the top test in the XML. */
#define RTTEST_C_XML_OMIT_TOP_TEST RT_BIT(1)
/** Whether to delay the top test XML element until testing commences. */
#define RTTEST_C_XML_DELAY_TOP_TEST RT_BIT(2)
/** Whether to try install the test instance in the test TLS slot. Setting
* this flag is incompatible with using the RTTestIXxxx variant of the API. */
#define RTTEST_C_NO_TLS RT_BIT(3)
/** Mask containing the valid bits. */
#define RTTEST_C_VALID_MASK UINT32_C(0x0000000f)
/** @} */
/**
* Creates a test instance.
*
* @returns IPRT status code.
* @param pszTest The test name.
* @param pszXmlFile The XML output file/pipe/whatever.
* @param fFlags Flags, see RTTEST_C_XXX.
* @param enmMaxLevel The max message level. Use RTTESTLVL_INVALID for
* the default output level or one from the
* environment. If specified, the environment variable
* will not be able to override it.
* @param iNativeTestPipe Native handle to a test pipe. -1 if not interested.
* @param pszXmlFile The XML output file name. If NULL the environment
* may be used. To selectively avoid that, pass an
* empty string.
* @param phTest Where to store the test instance handle.
*
* @note At the moment, we don't fail if @a pszXmlFile or @a iNativeTestPipe
* fails to open. This may change later.
*/
RTR3DECL(int) RTTestCreateEx(const char *pszTest, uint32_t fFlags, RTTESTLVL enmMaxLevel,
RTHCINTPTR iNativeTestPipe, const char *pszXmlFile, PRTTEST phTest);
/**
* Initializes IPRT and creates a test instance.
*
* Typical usage is:
* @code
int main(int argc, char **argv)
{
RTTEST hTest;
int rc = RTTestInitAndCreate("tstSomething", &hTest);
if (rc)
return rc;
...
}
@endcode
*
* @returns RTEXITCODE_SUCCESS on success. On failure an error message is
* printed and a suitable exit code is return.
*
* @param pszTest The test name.
* @param phTest Where to store the test instance handle.
*/
RTR3DECL(RTEXITCODE) RTTestInitAndCreate(const char *pszTest, PRTTEST phTest);
/**
* Variant of RTTestInitAndCreate that includes IPRT init flags and argument
* vectors.
*
* @returns RTEXITCODE_SUCCESS on success. On failure an error message is
* printed and a suitable exit code is return.
*
* @param cArgs Pointer to the argument count.
* @param ppapszArgs Pointer to the argument vector pointer.
* @param fRtInit Flags, see RTR3INIT_XXX.
* @param pszTest The test name.
* @param phTest Where to store the test instance handle.
*/
RTR3DECL(RTEXITCODE) RTTestInitExAndCreate(int cArgs, char ***papszArgs, uint32_t fRtInit, const char *pszTest, PRTTEST phTest);
/**
* Destroys a test instance previously created by RTTestCreate.
*
* @returns IPRT status code.
* @param hTest The test handle. NIL_RTTEST is ignored.
*/
RTR3DECL(int) RTTestDestroy(RTTEST hTest);
/**
* Changes the default test instance for the calling thread.
*
* @returns IPRT status code.
*
* @param hNewDefaultTest The new default test. NIL_RTTEST is fine.
* @param phOldTest Where to store the old test handle. Optional.
*/
RTR3DECL(int) RTTestSetDefault(RTTEST hNewDefaultTest, PRTTEST phOldTest);
/**
* Changes the test case name.
*
* @returns IRPT status code.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
* @param pszName The new test case name. Empty string is not accepted,
* nor are strings longer than 127 chars. Keep it short
* but descriptive.
*/
RTR3DECL(int) RTTestChangeName(RTTEST hTest, const char *pszName);
/**
* Allocate a block of guarded memory.
*
* @returns IPRT status code.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
* @param cb The amount of memory to allocate.
* @param cbAlign The alignment of the returned block.
* @param fHead Head or tail optimized guard.
* @param ppvUser Where to return the pointer to the block.
*/
RTR3DECL(int) RTTestGuardedAlloc(RTTEST hTest, size_t cb, uint32_t cbAlign, bool fHead, void **ppvUser);
/**
* Allocates a block of guarded memory where the guarded is immediately after
* the user memory.
*
* @returns Pointer to the allocated memory. NULL on failure.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
* @param cb The amount of memory to allocate.
*/
RTR3DECL(void *) RTTestGuardedAllocTail(RTTEST hTest, size_t cb);
/**
* Allocates a block of guarded memory where the guarded is right in front of
* the user memory.
*
* @returns Pointer to the allocated memory. NULL on failure.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
* @param cb The amount of memory to allocate.
*/
RTR3DECL(void *) RTTestGuardedAllocHead(RTTEST hTest, size_t cb);
/**
* Frees a block of guarded memory.
*
* @returns IPRT status code.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
* @param pv The memory. NULL is ignored.
*/
RTR3DECL(int) RTTestGuardedFree(RTTEST hTest, void *pv);
/**
* Test vprintf making sure the output starts on a new line.
*
* @returns Number of chars printed.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
* @param enmLevel Message importance level.
* @param pszFormat The message.
* @param va Arguments.
*/
RTR3DECL(int) RTTestPrintfNlV(RTTEST hTest, RTTESTLVL enmLevel, const char *pszFormat, va_list va);
/**
* Test printf making sure the output starts on a new line.
*
* @returns Number of chars printed.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
* @param enmLevel Message importance level.
* @param pszFormat The message.
* @param ... Arguments.
*/
RTR3DECL(int) RTTestPrintfNl(RTTEST hTest, RTTESTLVL enmLevel, const char *pszFormat, ...);
/**
* Test vprintf, makes sure lines are prefixed and so forth.
*
* @returns Number of chars printed.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
* @param enmLevel Message importance level.
* @param pszFormat The message.
* @param va Arguments.
*/
RTR3DECL(int) RTTestPrintfV(RTTEST hTest, RTTESTLVL enmLevel, const char *pszFormat, va_list va);
/**
* Test printf, makes sure lines are prefixed and so forth.
*
* @returns Number of chars printed.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
* @param enmLevel Message importance level.
* @param pszFormat The message.
* @param ... Arguments.
*/
RTR3DECL(int) RTTestPrintf(RTTEST hTest, RTTESTLVL enmLevel, const char *pszFormat, ...);
/**
* Prints the test banner.
*
* @returns Number of chars printed.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
*/
RTR3DECL(int) RTTestBanner(RTTEST hTest);
/**
* Summaries the test, destroys the test instance and return an exit code.
*
* @returns Test program exit code.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
*/
RTR3DECL(RTEXITCODE) RTTestSummaryAndDestroy(RTTEST hTest);
/**
* Skips the test, destroys the test instance and return an exit code.
*
* @returns Test program exit code.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
* @param pszReasonFmt Text explaining why, optional (NULL).
* @param va Arguments for the reason format string.
*/
RTR3DECL(RTEXITCODE) RTTestSkipAndDestroyV(RTTEST hTest, const char *pszReasonFmt, va_list va);
/**
* Skips the test, destroys the test instance and return an exit code.
*
* @returns Test program exit code.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
* @param pszReasonFmt Text explaining why, optional (NULL).
* @param ... Arguments for the reason format string.
*/
RTR3DECL(RTEXITCODE) RTTestSkipAndDestroy(RTTEST hTest, const char *pszReasonFmt, ...);
/**
* Starts a sub-test.
*
* This will perform an implicit RTTestSubDone() call if that has not been done
* since the last RTTestSub call.
*
* @returns Number of chars printed.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
* @param pszSubTest The sub-test name.
*/
RTR3DECL(int) RTTestSub(RTTEST hTest, const char *pszSubTest);
/**
* Format string version of RTTestSub.
*
* See RTTestSub for details.
*
* @returns Number of chars printed.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
* @param pszSubTestFmt The sub-test name format string.
* @param ... Arguments.
*/
RTR3DECL(int) RTTestSubF(RTTEST hTest, const char *pszSubTestFmt, ...);
/**
* Format string version of RTTestSub.
*
* See RTTestSub for details.
*
* @returns Number of chars printed.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
* @param pszSubTestFmt The sub-test name format string.
* @param va Arguments.
*/
RTR3DECL(int) RTTestSubV(RTTEST hTest, const char *pszSubTestFmt, va_list va);
/**
* Completes a sub-test.
*
* @returns Number of chars printed, negative numbers are IPRT error codes.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
*/
RTR3DECL(int) RTTestSubDone(RTTEST hTest);
/**
* Prints an extended PASSED message, optional.
*
* This does not conclude the sub-test, it could be used to report the passing
* of a sub-sub-to-the-power-of-N-test.
*
* @returns Number of chars printed, negative numbers are IPRT error codes.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
* @param pszFormat The message. No trailing newline.
* @param va The arguments.
*/
RTR3DECL(int) RTTestPassedV(RTTEST hTest, const char *pszFormat, va_list va);
/**
* Prints an extended PASSED message, optional.
*
* This does not conclude the sub-test, it could be used to report the passing
* of a sub-sub-to-the-power-of-N-test.
*
* @returns Number of chars printed, negative numbers are IPRT error codes.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
* @param pszFormat The message. No trailing newline.
* @param ... The arguments.
*/
RTR3DECL(int) RTTestPassed(RTTEST hTest, const char *pszFormat, ...);
/**
* Marks the current test as 'SKIPPED' and optionally displays a message
* explaining why.
*
* @returns Number of chars printed, negative numbers are IPRT error codes.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
* @param pszFormat The message. No trailing newline. Can be NULL or empty.
* @param ... The arguments.
*/
RTR3DECL(int) RTTestSkipped(RTTEST hTest, const char *pszFormat, ...);
/**
* Marks the current test as 'SKIPPED' and optionally displays a message
* explaining why.
*
* @returns Number of chars printed, negative numbers are IPRT error codes.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
* @param pszFormat The message. No trailing newline. Can be NULL or empty.
* @param va The arguments.
*/
RTR3DECL(int) RTTestSkippedV(RTTEST hTest, const char *pszFormat, va_list va);
/**
* Value units.
*
* @remarks This is an interface where we have to be binary compatible with both
* older versions of this header and other components using the same
* contant values.
* @remarks When adding a new item:
* - Always add at the end of the list - do NOT group it.
* - Add it to rtTestUnitName in r3/test.cpp.
* - include/VBox/VMMDevTesting.h (VMMDEV_TESTING_UNIT_XXX).
* - Add it to g_aszBs2TestUnitNames in
* TestSuite/bootsectors/bootsector2-common-routines.mac.
*
*/
typedef enum RTTESTUNIT
{
/** The customary invalid zero value. */
RTTESTUNIT_INVALID = 0,
RTTESTUNIT_PCT, /**< Percentage (10^-2). */
RTTESTUNIT_BYTES, /**< Bytes. */
RTTESTUNIT_BYTES_PER_SEC, /**< Bytes per second. */
RTTESTUNIT_KILOBYTES, /**< Kilobytes. */
RTTESTUNIT_KILOBYTES_PER_SEC, /**< Kilobytes per second. */
RTTESTUNIT_MEGABYTES, /**< Megabytes. */
RTTESTUNIT_MEGABYTES_PER_SEC, /**< Megabytes per second. */
RTTESTUNIT_PACKETS, /**< Packets. */
RTTESTUNIT_PACKETS_PER_SEC, /**< Packets per second. */
RTTESTUNIT_FRAMES, /**< Frames. */
RTTESTUNIT_FRAMES_PER_SEC, /**< Frames per second. */
RTTESTUNIT_OCCURRENCES, /**< Occurrences. */
RTTESTUNIT_OCCURRENCES_PER_SEC, /**< Occurrences per second. */
RTTESTUNIT_CALLS, /**< Calls. */
RTTESTUNIT_CALLS_PER_SEC, /**< Calls per second. */
RTTESTUNIT_ROUND_TRIP, /**< Round trips. */
RTTESTUNIT_SECS, /**< Seconds. */
RTTESTUNIT_MS, /**< Milliseconds. */
RTTESTUNIT_NS, /**< Nanoseconds. */
RTTESTUNIT_NS_PER_CALL, /**< Nanoseconds per call. */
RTTESTUNIT_NS_PER_FRAME, /**< Nanoseconds per frame. */
RTTESTUNIT_NS_PER_OCCURRENCE, /**< Nanoseconds per occurrence. */
RTTESTUNIT_NS_PER_PACKET, /**< Nanoseconds per frame. */
RTTESTUNIT_NS_PER_ROUND_TRIP, /**< Nanoseconds per round trip. */
RTTESTUNIT_INSTRS, /**< Instructions. */
RTTESTUNIT_INSTRS_PER_SEC, /**< Instructions per second. */
RTTESTUNIT_NONE, /**< No unit. */
RTTESTUNIT_PP1K, /**< Parts per thousand (10^-3). */
RTTESTUNIT_PP10K, /**< Parts per ten thousand (10^-4). */
RTTESTUNIT_PPM, /**< Parts per million (10^-6). */
RTTESTUNIT_PPB, /**< Parts per billion (10^-9). */
/** The end of valid units. */
RTTESTUNIT_END
} RTTESTUNIT;
AssertCompile(RTTESTUNIT_INSTRS == 0x19);
AssertCompile(RTTESTUNIT_NONE == 0x1b);
/**
* Report a named test result value.
*
* This is typically used for benchmarking but can be used for other purposes
* like reporting limits of some implementation. The value gets associated with
* the current sub test, the name must be unique within the sub test.
*
* @returns IPRT status code.
*
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
* @param pszName The value name.
* @param u64Value The value.
* @param enmUnit The value unit.
*/
RTR3DECL(int) RTTestValue(RTTEST hTest, const char *pszName, uint64_t u64Value, RTTESTUNIT enmUnit);
/**
* Same as RTTestValue, except that the name is now a format string.
*
* @returns IPRT status code.
*
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
* @param u64Value The value.
* @param enmUnit The value unit.
* @param pszNameFmt The value name format string.
* @param ... String arguments.
*/
RTR3DECL(int) RTTestValueF(RTTEST hTest, uint64_t u64Value, RTTESTUNIT enmUnit, const char *pszNameFmt, ...);
/**
* Same as RTTestValue, except that the name is now a format string.
*
* @returns IPRT status code.
*
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
* @param u64Value The value.
* @param enmUnit The value unit.
* @param pszNameFmt The value name format string.
* @param va_list String arguments.
*/
RTR3DECL(int) RTTestValueV(RTTEST hTest, uint64_t u64Value, RTTESTUNIT enmUnit, const char *pszNameFmt, va_list va);
/**
* Increments the error counter.
*
* @returns IPRT status code.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
*/
RTR3DECL(int) RTTestErrorInc(RTTEST hTest);
/**
* Get the current error count.
*
* @returns The error counter, UINT32_MAX if no valid test handle.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
*/
RTR3DECL(uint32_t) RTTestErrorCount(RTTEST hTest);
/**
* Get the error count of the current sub test.
*
* @returns The error counter, UINT32_MAX if no valid test handle.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
*/
RTR3DECL(uint32_t) RTTestSubErrorCount(RTTEST hTest);
/**
* Increments the error counter and prints a failure message.
*
* @returns IPRT status code.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
* @param pszFormat The message. No trailing newline.
* @param va The arguments.
*/
RTR3DECL(int) RTTestFailedV(RTTEST hTest, const char *pszFormat, va_list va);
/**
* Increments the error counter and prints a failure message.
*
* @returns IPRT status code.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
* @param pszFormat The message. No trailing newline.
* @param ... The arguments.
*/
RTR3DECL(int) RTTestFailed(RTTEST hTest, const char *pszFormat, ...);
/**
* Same as RTTestPrintfV with RTTESTLVL_FAILURE.
*
* @returns Number of chars printed.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
* @param pszFormat The message.
* @param va Arguments.
*/
RTR3DECL(int) RTTestFailureDetailsV(RTTEST hTest, const char *pszFormat, va_list va);
/**
* Same as RTTestPrintf with RTTESTLVL_FAILURE.
*
* @returns Number of chars printed.
* @param hTest The test handle. If NIL_RTTEST we'll use the one
* associated with the calling thread.
* @param pszFormat The message.
* @param ... Arguments.
*/
RTR3DECL(int) RTTestFailureDetails(RTTEST hTest, const char *pszFormat, ...);
/** @def RTTEST_CHECK
* Check whether a boolean expression holds true.
*
* If the expression is false, call RTTestFailed giving the line number and expression.
*
* @param hTest The test handle.
* @param expr The expression to evaluate.
*/
#define RTTEST_CHECK(hTest, expr) \
do { if (!(expr)) { \
RTTestFailed((hTest), "line %u: %s", __LINE__, #expr); \
} \
} while (0)
/** @def RTTEST_CHECK_RET
* Check whether a boolean expression holds true, returns on false.
*
* If the expression is false, call RTTestFailed giving the line number and
* expression, then return @a rcRet.
*
* @param hTest The test handle.
* @param expr The expression to evaluate.
* @param rcRet What to return on failure.
*/
#define RTTEST_CHECK_RET(hTest, expr, rcRet) \
do { if (!(expr)) { \
RTTestFailed((hTest), "line %u: %s", __LINE__, #expr); \
return (rcRet); \
} \
} while (0)
/** @def RTTEST_CHECK_RETV
* Check whether a boolean expression holds true, returns void on false.
*
* If the expression is false, call RTTestFailed giving the line number and
* expression, then return void.
*
* @param hTest The test handle.
* @param expr The expression to evaluate.
*/
#define RTTEST_CHECK_RETV(hTest, expr) \
do { if (!(expr)) { \
RTTestFailed((hTest), "line %u: %s", __LINE__, #expr); \
return; \
} \
} while (0)
/** @def RTTEST_CHECK_BREAK
* Check whether a boolean expression holds true.
*
* If the expression is false, call RTTestFailed giving the line number and
* expression, then break.
*
* @param hTest The test handle.
* @param expr The expression to evaluate.
*/
#define RTTEST_CHECK_BREAK(hTest, expr) \
if (!(expr)) { \
RTTestFailed((hTest), "line %u: %s", __LINE__, #expr); \
break; \
} else do {} while (0)
/** @def RTTEST_CHECK_MSG
* Check whether a boolean expression holds true.
*
* If the expression is false, call RTTestFailed giving the line number and expression.
*
* @param hTest The test handle.
* @param expr The expression to evaluate.
* @param DetailsArgs Argument list for RTTestFailureDetails, including
* parenthesis.
*/
#define RTTEST_CHECK_MSG(hTest, expr, DetailsArgs) \
do { if (!(expr)) { \
RTTestFailed((hTest), "line %u: %s", __LINE__, #expr); \
RTTestFailureDetails DetailsArgs; \
} \
} while (0)
/** @def RTTEST_CHECK_MSG_RET
* Check whether a boolean expression holds true, returns on false.
*
* If the expression is false, call RTTestFailed giving the line number and expression.
*
* @param hTest The test handle.
* @param expr The expression to evaluate.
* @param DetailsArgs Argument list for RTTestFailureDetails, including
* parenthesis.
* @param rcRet What to return on failure.
*/
#define RTTEST_CHECK_MSG_RET(hTest, expr, DetailsArgs, rcRet) \
do { if (!(expr)) { \
RTTestFailed((hTest), "line %u: %s", __LINE__, #expr); \
RTTestFailureDetails DetailsArgs; \
return (rcRet); \
} \
} while (0)
/** @def RTTEST_CHECK_MSG_RET
* Check whether a boolean expression holds true, returns void on false.
*
* If the expression is false, call RTTestFailed giving the line number and expression.
*
* @param hTest The test handle.
* @param expr The expression to evaluate.
* @param DetailsArgs Argument list for RTTestFailureDetails, including
* parenthesis.
*/
#define RTTEST_CHECK_MSG_RETV(hTest, expr, DetailsArgs) \
do { if (!(expr)) { \
RTTestFailed((hTest), "line %u: %s", __LINE__, #expr); \
RTTestFailureDetails DetailsArgs; \
return; \
} \
} while (0)
/** @def RTTEST_CHECK_RC
* Check whether an expression returns a specific IPRT style status code.
*
* If a different status code is return, call RTTestFailed giving the line
* number, expression, actual and expected status codes.
*
* @param hTest The test handle.
* @param rcExpr The expression resulting in an IPRT status code.
* @param rcExpect The expected return code. This may be referenced
* more than once by the macro.
*/
#define RTTEST_CHECK_RC(hTest, rcExpr, rcExpect) \
do { \
int rcCheck = (rcExpr); \
if (rcCheck != (rcExpect)) { \
RTTestFailed((hTest), "line %u: %s: expected %Rrc, got %Rrc", __LINE__, #rcExpr, (rcExpect), rcCheck); \
} \
} while (0)
/** @def RTTEST_CHECK_RC_RET
* Check whether an expression returns a specific IPRT style status code.
*
* If a different status code is return, call RTTestFailed giving the line
* number, expression, actual and expected status codes, then return.
*
* @param hTest The test handle.
* @param rcExpr The expression resulting in an IPRT status code.
* This will be assigned to a local rcCheck variable
* that can be used as return value.
* @param rcExpect The expected return code. This may be referenced
* more than once by the macro.
* @param rcRet The return code.
*/
#define RTTEST_CHECK_RC_RET(hTest, rcExpr, rcExpect, rcRet) \
do { \
int rcCheck = (rcExpr); \
if (rcCheck != (rcExpect)) { \
RTTestFailed((hTest), "line %u: %s: expected %Rrc, got %Rrc", __LINE__, #rcExpr, (rcExpect), rcCheck); \
return (rcRet); \
} \
} while (0)
/** @def RTTEST_CHECK_RC_RETV
* Check whether an expression returns a specific IPRT style status code.
*
* If a different status code is return, call RTTestFailed giving the line
* number, expression, actual and expected status codes, then return.
*
* @param hTest The test handle.
* @param rcExpr The expression resulting in an IPRT status code.
* @param rcExpect The expected return code. This may be referenced
* more than once by the macro.
*/
#define RTTEST_CHECK_RC_RETV(hTest, rcExpr, rcExpect) \
do { \
int rcCheck = (rcExpr); \
if (rcCheck != (rcExpect)) { \
RTTestFailed((hTest), "line %u: %s: expected %Rrc, got %Rrc", __LINE__, #rcExpr, (rcExpect), rcCheck); \
return; \
} \
} while (0)
/** @def RTTEST_CHECK_RC_BREAK
* Check whether an expression returns a specific IPRT style status code.
*
* If a different status code is return, call RTTestFailed giving the line
* number, expression, actual and expected status codes, then break.
*
* @param hTest The test handle.
* @param rcExpr The expression resulting in an IPRT status code.
* @param rcExpect The expected return code. This may be referenced
* more than once by the macro.
*/
#define RTTEST_CHECK_RC_BREAK(hTest, rcExpr, rcExpect) \
if (1) { \
int rcCheck = (rcExpr); \
if (rcCheck != (rcExpect)) { \
RTTestFailed((hTest), "line %u: %s: expected %Rrc, got %Rrc", __LINE__, #rcExpr, (rcExpect), rcCheck); \
break; \
} \
} else do {} while (0)
/** @def RTTEST_CHECK_RC_OK
* Check whether a IPRT style status code indicates success.
*
* If the status indicates failure, call RTTestFailed giving the line number,
* expression and status code.
*
* @param hTest The test handle.
* @param rcExpr The expression resulting in an IPRT status code.
*/
#define RTTEST_CHECK_RC_OK(hTest, rcExpr) \
do { \
int rcCheck = (rcExpr); \
if (RT_FAILURE(rcCheck)) { \
RTTestFailed((hTest), "line %u: %s: %Rrc", __LINE__, #rcExpr, rcCheck); \
} \
} while (0)
/** @def RTTEST_CHECK_RC_OK_RET
* Check whether a IPRT style status code indicates success.
*
* If the status indicates failure, call RTTestFailed giving the line number,
* expression and status code, then return with the specified value.
*
* @param hTest The test handle.
* @param rcExpr The expression resulting in an IPRT status code.
* This will be assigned to a local rcCheck variable
* that can be used as return value.
* @param rcRet The return code.
*/
#define RTTEST_CHECK_RC_OK_RET(hTest, rcExpr, rcRet) \
do { \
int rcCheck = (rcExpr); \
if (RT_FAILURE(rcCheck)) { \
RTTestFailed((hTest), "line %u: %s: %Rrc", __LINE__, #rcExpr, rcCheck); \
return (rcRet); \
} \
} while (0)
/** @def RTTEST_CHECK_RC_OK_RETV
* Check whether a IPRT style status code indicates success.
*
* If the status indicates failure, call RTTestFailed giving the line number,
* expression and status code, then return.
*
* @param hTest The test handle.
* @param rcExpr The expression resulting in an IPRT status code.
*/
#define RTTEST_CHECK_RC_OK_RETV(hTest, rcExpr) \
do { \
int rcCheck = (rcExpr); \
if (RT_FAILURE(rcCheck)) { \
RTTestFailed((hTest), "line %u: %s: %Rrc", __LINE__, #rcExpr, rcCheck); \
return; \
} \
} while (0)
/** @name Implicit Test Handle API Variation
* The test handle is retrieved from the test TLS entry of the calling thread.
* @{
*/
/**
* Test vprintf, makes sure lines are prefixed and so forth.
*
* @returns Number of chars printed.
* @param enmLevel Message importance level.
* @param pszFormat The message.
* @param va Arguments.
*/
RTR3DECL(int) RTTestIPrintfV(RTTESTLVL enmLevel, const char *pszFormat, va_list va);
/**
* Test printf, makes sure lines are prefixed and so forth.
*
* @returns Number of chars printed.
* @param enmLevel Message importance level.
* @param pszFormat The message.
* @param ... Arguments.
*/
RTR3DECL(int) RTTestIPrintf(RTTESTLVL enmLevel, const char *pszFormat, ...);
/**
* Starts a sub-test.
*
* This will perform an implicit RTTestSubDone() call if that has not been done
* since the last RTTestSub call.
*
* @returns Number of chars printed.
* @param pszSubTest The sub-test name.
*/
RTR3DECL(int) RTTestISub(const char *pszSubTest);
/**
* Format string version of RTTestSub.
*
* See RTTestSub for details.
*
* @returns Number of chars printed.
* @param pszSubTestFmt The sub-test name format string.
* @param ... Arguments.
*/
RTR3DECL(int) RTTestISubF(const char *pszSubTestFmt, ...);
/**
* Format string version of RTTestSub.
*
* See RTTestSub for details.
*
* @returns Number of chars printed.
* @param pszSubTestFmt The sub-test name format string.
* @param va Arguments.
*/
RTR3DECL(int) RTTestISubV(const char *pszSubTestFmt, va_list va);
/**
* Completes a sub-test.
*
* @returns Number of chars printed.
*/
RTR3DECL(int) RTTestISubDone(void);
/**
* Prints an extended PASSED message, optional.
*
* This does not conclude the sub-test, it could be used to report the passing
* of a sub-sub-to-the-power-of-N-test.
*
* @returns IPRT status code.
* @param pszFormat The message. No trailing newline.
* @param va The arguments.
*/
RTR3DECL(int) RTTestIPassedV(const char *pszFormat, va_list va);
/**
* Prints an extended PASSED message, optional.
*
* This does not conclude the sub-test, it could be used to report the passing
* of a sub-sub-to-the-power-of-N-test.
*
* @returns IPRT status code.
* @param pszFormat The message. No trailing newline.
* @param ... The arguments.
*/
RTR3DECL(int) RTTestIPassed(const char *pszFormat, ...);
/**
* Report a named test result value.
*
* This is typically used for benchmarking but can be used for other purposes
* like reporting limits of some implementation. The value gets associated with
* the current sub test, the name must be unique within the sub test.
*
* @returns IPRT status code.
*
* @param pszName The value name.
* @param u64Value The value.
* @param enmUnit The value unit.
*/
RTR3DECL(int) RTTestIValue(const char *pszName, uint64_t u64Value, RTTESTUNIT enmUnit);
/**
* Same as RTTestValue, except that the name is now a format string.
*
* @returns IPRT status code.
*
* @param u64Value The value.
* @param enmUnit The value unit.
* @param pszNameFmt The value name format string.
* @param ... String arguments.
*/
RTR3DECL(int) RTTestIValueF(uint64_t u64Value, RTTESTUNIT enmUnit, const char *pszNameFmt, ...);
/**
* Same as RTTestValue, except that the name is now a format string.
*
* @returns IPRT status code.
*
* @param u64Value The value.
* @param enmUnit The value unit.
* @param pszNameFmt The value name format string.
* @param va_list String arguments.
*/
RTR3DECL(int) RTTestIValueV(uint64_t u64Value, RTTESTUNIT enmUnit, const char *pszNameFmt, va_list va);
/**
* Increments the error counter.
*
* @returns IPRT status code.
*/
RTR3DECL(int) RTTestIErrorInc(void);
/**
* Get the current error count.
*
* @returns The error counter, UINT32_MAX if no valid test handle.
*/
RTR3DECL(uint32_t) RTTestIErrorCount(void);
/**
* Increments the error counter and prints a failure message.
*
* @returns IPRT status code.
* @param pszFormat The message. No trailing newline.
* @param va The arguments.
*/
RTR3DECL(int) RTTestIFailedV(const char *pszFormat, va_list va);
/**
* Increments the error counter and prints a failure message.
*
* @returns IPRT status code.
* @param pszFormat The message. No trailing newline.
* @param ... The arguments.
*/
RTR3DECL(int) RTTestIFailed(const char *pszFormat, ...);
/**
* Increments the error counter, prints a failure message and returns the
* specified status code.
*
* This is mainly a convenience method for saving vertical space in the source
* code.
*
* @returns @a rcRet
* @param rcRet The IPRT status code to return.
* @param pszFormat The message. No trailing newline.
* @param va The arguments.
*/
RTR3DECL(int) RTTestIFailedRcV(int rcRet, const char *pszFormat, va_list va);
/**
* Increments the error counter, prints a failure message and returns the
* specified status code.
*
* This is mainly a convenience method for saving vertical space in the source
* code.
*
* @returns @a rcRet
* @param rcRet The IPRT status code to return.
* @param pszFormat The message. No trailing newline.
* @param ... The arguments.
*/
RTR3DECL(int) RTTestIFailedRc(int rcRet, const char *pszFormat, ...);
/**
* Same as RTTestIPrintfV with RTTESTLVL_FAILURE.
*
* @returns Number of chars printed.
* @param pszFormat The message.
* @param va Arguments.
*/
RTR3DECL(int) RTTestIFailureDetailsV(const char *pszFormat, va_list va);
/**
* Same as RTTestIPrintf with RTTESTLVL_FAILURE.
*
* @returns Number of chars printed.
* @param pszFormat The message.
* @param ... Arguments.
*/
RTR3DECL(int) RTTestIFailureDetails(const char *pszFormat, ...);
/** @def RTTESTI_CHECK
* Check whether a boolean expression holds true.
*
* If the expression is false, call RTTestIFailed giving the line number and
* expression.
*
* @param expr The expression to evaluate.
*/
#define RTTESTI_CHECK(expr) \
do { if (!(expr)) { \
RTTestIFailed("line %u: %s", __LINE__, #expr); \
} \
} while (0)
/** @def RTTESTI_CHECK_RET
* Check whether a boolean expression holds true, returns on false.
*
* If the expression is false, call RTTestIFailed giving the line number and
* expression, then return @a rcRet.
*
* @param expr The expression to evaluate.
* @param rcRet What to return on failure.
*/
#define RTTESTI_CHECK_RET(expr, rcRet) \
do { if (!(expr)) { \
RTTestIFailed("line %u: %s", __LINE__, #expr); \
return (rcRet); \
} \
} while (0)
/** @def RTTESTI_CHECK_RETV
* Check whether a boolean expression holds true, returns void on false.
*
* If the expression is false, call RTTestIFailed giving the line number and
* expression, then return void.
*
* @param expr The expression to evaluate.
*/
#define RTTESTI_CHECK_RETV(expr) \
do { if (!(expr)) { \
RTTestIFailed("line %u: %s", __LINE__, #expr); \
return; \
} \
} while (0)
/** @def RTTESTI_CHECK_RETV
* Check whether a boolean expression holds true, returns void on false.
*
* If the expression is false, call RTTestIFailed giving the line number and
* expression, then break.
*
* @param expr The expression to evaluate.
*/
#define RTTESTI_CHECK_BREAK(expr) \
if (!(expr)) { \
RTTestIFailed("line %u: %s", __LINE__, #expr); \
break; \
} do {} while (0)
/** @def RTTESTI_CHECK_MSG
* Check whether a boolean expression holds true.
*
* If the expression is false, call RTTestIFailed giving the line number and
* expression.
*
* @param expr The expression to evaluate.
* @param DetailsArgs Argument list for RTTestIFailureDetails, including
* parenthesis.
*/
#define RTTESTI_CHECK_MSG(expr, DetailsArgs) \
do { if (!(expr)) { \
RTTestIFailed("line %u: %s", __LINE__, #expr); \
RTTestIFailureDetails DetailsArgs; \
} \
} while (0)
/** @def RTTESTI_CHECK_MSG_RET
* Check whether a boolean expression holds true, returns on false.
*
* If the expression is false, call RTTestIFailed giving the line number and
* expression.
*
* @param expr The expression to evaluate.
* @param DetailsArgs Argument list for RTTestIFailureDetails, including
* parenthesis.
* @param rcRet What to return on failure.
*/
#define RTTESTI_CHECK_MSG_RET(expr, DetailsArgs, rcRet) \
do { if (!(expr)) { \
RTTestIFailed("line %u: %s", __LINE__, #expr); \
RTTestIFailureDetails DetailsArgs; \
return (rcRet); \
} \
} while (0)
/** @def RTTESTI_CHECK_MSG_RET
* Check whether a boolean expression holds true, returns void on false.
*
* If the expression is false, call RTTestIFailed giving the line number and
* expression.
*
* @param expr The expression to evaluate.
* @param DetailsArgs Argument list for RTTestIFailureDetails, including
* parenthesis.
*/
#define RTTESTI_CHECK_MSG_RETV(expr, DetailsArgs) \
do { if (!(expr)) { \
RTTestIFailed("line %u: %s", __LINE__, #expr); \
RTTestIFailureDetails DetailsArgs; \
return; \
} \
} while (0)
/** @def RTTESTI_CHECK_RC
* Check whether an expression returns a specific IPRT style status code.
*
* If a different status code is return, call RTTestIFailed giving the line
* number, expression, actual and expected status codes.
*
* @param rcExpr The expression resulting in an IPRT status code.
* @param rcExpect The expected return code. This may be referenced
* more than once by the macro.
*/
#define RTTESTI_CHECK_RC(rcExpr, rcExpect) \
do { \
int rcCheck = (rcExpr); \
if (rcCheck != (rcExpect)) { \
RTTestIFailed("line %u: %s: expected %Rrc, got %Rrc", __LINE__, #rcExpr, (rcExpect), rcCheck); \
} \
} while (0)
/** @def RTTESTI_CHECK_RC_RET
* Check whether an expression returns a specific IPRT style status code.
*
* If a different status code is return, call RTTestIFailed giving the line
* number, expression, actual and expected status codes, then return.
*
* @param rcExpr The expression resulting in an IPRT status code.
* This will be assigned to a local rcCheck variable
* that can be used as return value.
* @param rcExpect The expected return code. This may be referenced
* more than once by the macro.
* @param rcRet The return code.
*/
#define RTTESTI_CHECK_RC_RET(rcExpr, rcExpect, rcRet) \
do { \
int rcCheck = (rcExpr); \
if (rcCheck != (rcExpect)) { \
RTTestIFailed("line %u: %s: expected %Rrc, got %Rrc", __LINE__, #rcExpr, (rcExpect), rcCheck); \
return (rcRet); \
} \
} while (0)
/** @def RTTESTI_CHECK_RC_RETV
* Check whether an expression returns a specific IPRT style status code.
*
* If a different status code is return, call RTTestIFailed giving the line
* number, expression, actual and expected status codes, then return.
*
* @param rcExpr The expression resulting in an IPRT status code.
* @param rcExpect The expected return code. This may be referenced
* more than once by the macro.
*/
#define RTTESTI_CHECK_RC_RETV(rcExpr, rcExpect) \
do { \
int rcCheck = (rcExpr); \
if (rcCheck != (rcExpect)) { \
RTTestIFailed("line %u: %s: expected %Rrc, got %Rrc", __LINE__, #rcExpr, (rcExpect), rcCheck); \
return; \
} \
} while (0)
/** @def RTTESTI_CHECK_RC_BREAK
* Check whether an expression returns a specific IPRT style status code.
*
* If a different status code is return, call RTTestIFailed giving the line
* number, expression, actual and expected status codes, then break.
*
* @param rcExpr The expression resulting in an IPRT status code.
* @param rcExpect The expected return code. This may be referenced
* more than once by the macro.
*/
#define RTTESTI_CHECK_RC_BREAK(rcExpr, rcExpect) \
if (1) { \
int rcCheck = (rcExpr); \
if (rcCheck != (rcExpect)) { \
RTTestIFailed("line %u: %s: expected %Rrc, got %Rrc", __LINE__, #rcExpr, (rcExpect), rcCheck); \
break; \
} \
} else do {} while (0)
/** @def RTTESTI_CHECK_RC_OK
* Check whether a IPRT style status code indicates success.
*
* If the status indicates failure, call RTTestIFailed giving the line number,
* expression and status code.
*
* @param rcExpr The expression resulting in an IPRT status code.
*/
#define RTTESTI_CHECK_RC_OK(rcExpr) \
do { \
int rcCheck = (rcExpr); \
if (RT_FAILURE(rcCheck)) { \
RTTestIFailed("line %u: %s: %Rrc", __LINE__, #rcExpr, rcCheck); \
} \
} while (0)
/** @def RTTESTI_CHECK_RC_OK_RET
* Check whether a IPRT style status code indicates success.
*
* If the status indicates failure, call RTTestIFailed giving the line number,
* expression and status code, then return with the specified value.
*
* @param rcExpr The expression resulting in an IPRT status code.
* This will be assigned to a local rcCheck variable
* that can be used as return value.
* @param rcRet The return code.
*/
#define RTTESTI_CHECK_RC_OK_RET(rcExpr, rcRet) \
do { \
int rcCheck = (rcExpr); \
if (RT_FAILURE(rcCheck)) { \
RTTestIFailed("line %u: %s: %Rrc", __LINE__, #rcExpr, rcCheck); \
return (rcRet); \
} \
} while (0)
/** @def RTTESTI_CHECK_RC_OK_RETV
* Check whether a IPRT style status code indicates success.
*
* If the status indicates failure, call RTTestIFailed giving the line number,
* expression and status code, then return.
*
* @param rcExpr The expression resulting in an IPRT status code.
*/
#define RTTESTI_CHECK_RC_OK_RETV(rcExpr) \
do { \
int rcCheck = (rcExpr); \
if (RT_FAILURE(rcCheck)) { \
RTTestIFailed("line %u: %s: %Rrc", __LINE__, #rcExpr, rcCheck); \
return; \
} \
} while (0)
/** @} */
/** @} */
RT_C_DECLS_END
#endif
|