Changeset 75423 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Nov 13, 2018 2:05:27 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 126573
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/testcase/tstRTBigNum.cpp
r69111 r75423 31 31 #include <iprt/bignum.h> 32 32 #include <iprt/uint128.h> 33 33 #include <iprt/uint64.h> 34 #include <iprt/uint32.h> 35 36 #include <iprt/string.h> 37 #include <iprt/rand.h> 34 38 #include <iprt/test.h> 35 39 #include <iprt/thread.h> 36 40 #include <iprt/time.h> 37 #include <iprt/string.h>38 41 39 42 #if 1 … … 1617 1620 1618 1621 1622 static void testUInt64Division(void) 1623 { 1624 /* 1625 * Check the results against native code. 1626 */ 1627 RTTestSub(g_hTest, "RTUInt64DivRem"); 1628 for (uint32_t i = 0; i < _1M / 2; i++) 1629 { 1630 uint64_t const uDividend = RTRandU64Ex(0, UINT64_MAX); 1631 uint64_t const uDivisor = RTRandU64Ex(1, UINT64_MAX); 1632 uint64_t const uQuotient = uDividend / uDivisor; 1633 uint64_t const uRemainder = uDividend % uDivisor; 1634 RTUINT64U Dividend = { uDividend }; 1635 RTUINT64U Divisor = { uDivisor }; 1636 RTUINT64U Quotient = { UINT64_MAX }; 1637 RTUINT64U Remainder = { UINT64_MAX }; 1638 RTTESTI_CHECK(RTUInt64DivRem(&Quotient, &Remainder, &Dividend, &Divisor) == &Quotient); 1639 if (uQuotient != Quotient.u || uRemainder != Remainder.u) 1640 RTTestIFailed("%RU64 / %RU64 -> %RU64 rem %RU64, expected %RU64 rem %RU64", 1641 uDividend, uDivisor, Quotient.u, Remainder.u, uQuotient, uRemainder); 1642 } 1643 } 1644 1645 1646 static void testUInt32Division(void) 1647 { 1648 /* 1649 * Check the results against native code. 1650 */ 1651 RTTestSub(g_hTest, "RTUInt32DivRem"); 1652 for (uint32_t i = 0; i < _1M / 2; i++) 1653 { 1654 uint32_t const uDividend = RTRandU32Ex(0, UINT32_MAX); 1655 uint32_t const uDivisor = RTRandU32Ex(1, UINT32_MAX); 1656 uint32_t const uQuotient = uDividend / uDivisor; 1657 uint32_t const uRemainder = uDividend % uDivisor; 1658 RTUINT32U Dividend = { uDividend }; 1659 RTUINT32U Divisor = { uDivisor }; 1660 RTUINT32U Quotient = { UINT32_MAX }; 1661 RTUINT32U Remainder = { UINT32_MAX }; 1662 RTTESTI_CHECK(RTUInt32DivRem(&Quotient, &Remainder, &Dividend, &Divisor) == &Quotient); 1663 if (uQuotient != Quotient.u || uRemainder != Remainder.u) 1664 RTTestIFailed("%u / %u -> %u rem %u, expected %u rem %u", 1665 uDividend, uDivisor, Quotient.u, Remainder.u, uQuotient, uRemainder); 1666 } 1667 } 1668 1669 1619 1670 1620 1671 int main(int argc, char **argv) … … 1676 1727 testUInt128Addition(); 1677 1728 1729 /* Test UInt32 and UInt64 division as it's used by the watcom support code (BIOS, ValKit, OS/2 GAs). */ 1730 testUInt32Division(); 1731 testUInt64Division(); 1732 1678 1733 /* Test the RTBigInt operations. */ 1679 1734 testCompare();
Note:
See TracChangeset
for help on using the changeset viewer.