summaryrefslogtreecommitdiff
path: root/tools/qa/cppunit/test_bigint.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tools/qa/cppunit/test_bigint.cxx')
-rw-r--r--tools/qa/cppunit/test_bigint.cxx22
1 files changed, 10 insertions, 12 deletions
diff --git a/tools/qa/cppunit/test_bigint.cxx b/tools/qa/cppunit/test_bigint.cxx
index efea3e341235..a91d16f93def 100644
--- a/tools/qa/cppunit/test_bigint.cxx
+++ b/tools/qa/cppunit/test_bigint.cxx
@@ -57,40 +57,38 @@ void BigIntTest::testConstructionFromLongLong()
}
#if SAL_TYPES_SIZEOFLONG < SAL_TYPES_SIZEOFLONGLONG
- // positive number just fitting to long
+ // positive number just fitting to sal_Int32
{
- BigInt bi(static_cast<sal_Int64>(std::numeric_limits<tools::Long>::max()));
+ BigInt bi(static_cast<sal_Int64>(std::numeric_limits<sal_Int32>::max()));
CPPUNIT_ASSERT(bi.IsSet());
CPPUNIT_ASSERT(!bi.IsZero());
CPPUNIT_ASSERT(!bi.IsNeg());
CPPUNIT_ASSERT(bi.IsLong());
- CPPUNIT_ASSERT_EQUAL(std::numeric_limits<tools::Long>::max(), static_cast<tools::Long>(bi));
+ CPPUNIT_ASSERT_EQUAL(std::numeric_limits<sal_Int32>::max(), static_cast<sal_Int32>(bi));
}
- // negative number just fitting to long
+ // negative number just fitting to sal_Int32
{
- BigInt bi(static_cast<sal_Int64>(std::numeric_limits<tools::Long>::min()));
+ BigInt bi(static_cast<sal_Int64>(std::numeric_limits<sal_Int32>::min()));
CPPUNIT_ASSERT(bi.IsSet());
CPPUNIT_ASSERT(!bi.IsZero());
CPPUNIT_ASSERT(bi.IsNeg());
CPPUNIT_ASSERT(bi.IsLong());
- CPPUNIT_ASSERT_EQUAL(std::numeric_limits<tools::Long>::min(), static_cast<tools::Long>(bi));
+ CPPUNIT_ASSERT_EQUAL(std::numeric_limits<sal_Int32>::min(), static_cast<sal_Int32>(bi));
}
- // positive number not fitting to long
+ // positive number not fitting to sal_Int32
{
- BigInt bi(static_cast<sal_Int64>(std::numeric_limits<tools::Long>::max())
- + static_cast<sal_Int64>(1));
+ BigInt bi(static_cast<sal_Int64>(std::numeric_limits<sal_Int32>::max()) + 1);
CPPUNIT_ASSERT(bi.IsSet());
CPPUNIT_ASSERT(!bi.IsZero());
CPPUNIT_ASSERT(!bi.IsNeg());
CPPUNIT_ASSERT(!bi.IsLong());
}
- // negative number not fitting to long
+ // negative number not fitting to sal_Int32
{
- BigInt bi(static_cast<sal_Int64>(std::numeric_limits<tools::Long>::min())
- - static_cast<sal_Int64>(1));
+ BigInt bi(static_cast<sal_Int64>(std::numeric_limits<sal_Int32>::min()) - 1);
CPPUNIT_ASSERT(bi.IsSet());
CPPUNIT_ASSERT(!bi.IsZero());
CPPUNIT_ASSERT(bi.IsNeg());