VirtualBox

Changeset 75423 in vbox for trunk/src/VBox/Runtime


Ignore:
Timestamp:
Nov 13, 2018 2:05:27 PM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
126573
Message:

tstRTBigNum: Test RTUInt32DivRem and RTUInt64DivRem too.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/testcase/tstRTBigNum.cpp

    r69111 r75423  
    3131#include <iprt/bignum.h>
    3232#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>
    3438#include <iprt/test.h>
    3539#include <iprt/thread.h>
    3640#include <iprt/time.h>
    37 #include <iprt/string.h>
    3841
    3942#if 1
     
    16171620
    16181621
     1622static 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
     1646static 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
    16191670
    16201671int main(int argc, char **argv)
     
    16761727            testUInt128Addition();
    16771728
     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
    16781733            /* Test the RTBigInt operations. */
    16791734            testCompare();
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette