VirtualBox

Changeset 40627 in vbox for trunk/src


Ignore:
Timestamp:
Mar 26, 2012 9:02:42 AM (13 years ago)
Author:
vboxsync
Message:

Runtime/testcase: gcc-4.7 warnings

File:
1 edited

Legend:

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

    r38636 r40627  
    152152        { "0x07777777777777777777777",0,  VWRN_NUMBER_TOO_BIG,  0x7777777777777777ULL },
    153153        { "0x07f7f7f7f7f7f7f7f7f7f7f",0,  VWRN_NUMBER_TOO_BIG,  0x7f7f7f7f7f7f7f7fULL },
    154         { "0x0ffffffffffffffffffffff",0,  VWRN_NUMBER_TOO_BIG,  0xffffffffffffffffULL },
     154        { "0x0ffffffffffffffffffffff",0,  VWRN_NUMBER_TOO_BIG,  (int64_t)0xffffffffffffffffULL },
    155155        { "asdfasdfasdf",           0,  VERR_NO_DIGITS,         0 },
    156156        { "0x111111111",            0,  VINF_SUCCESS,           0x111111111ULL },
     
    200200        { "0x80000000",             0,  VWRN_NUMBER_TOO_BIG,    INT32_MIN },
    201201        { "0xffffffff",             0,  VWRN_NUMBER_TOO_BIG,    -1 },
    202         { "0x0fffffffffffffff",     0,  VWRN_NUMBER_TOO_BIG,    0xffffffff },
     202        { "0x0fffffffffffffff",     0,  VWRN_NUMBER_TOO_BIG,    (int32_t)0xffffffff },
    203203        { "0x01111111111111111111111",0,  VWRN_NUMBER_TOO_BIG,  0x11111111 },
    204         { "0x0ffffffffffffffffffffff",0,  VWRN_NUMBER_TOO_BIG,  0xffffffff },
     204        { "0x0ffffffffffffffffffffff",0,  VWRN_NUMBER_TOO_BIG,  (int32_t)0xffffffff },
    205205        { "asdfasdfasdf",           0,  VERR_NO_DIGITS,         0 },
    206206        { "0x1111111",              0,  VINF_SUCCESS,           0x01111111 },
     
    213213        { "1",                      0,  VINF_SUCCESS,           1 },
    214214        /// @todo { "-1",                     0,  VWRN_NEGATIVE_UNSIGNED, ~0 }, - no longer true. bad idea?
    215         { "-1",                     0,  VWRN_NUMBER_TOO_BIG,    ~0 },
     215        { "-1",                     0,  VWRN_NUMBER_TOO_BIG,    ~0U },
    216216        { "0x",                     0,  VWRN_TRAILING_CHARS,    0 },
    217217        { "0x1",                    0,  VINF_SUCCESS,           1 },
Note: See TracChangeset for help on using the changeset viewer.

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