diff --git a/include/locale b/include/locale index 0d010020..38c68ec1 100644 --- a/include/locale +++ b/include/locale @@ -1585,7 +1585,7 @@ num_put<_CharT, _OutputIterator>::do_put(iter_type __s, ios_base& __iob, this->__format_int(__fmt+1, __len, true, __iob.flags()); const unsigned __nbuf = (numeric_limits::digits / 3) + ((numeric_limits::digits % 3) != 0) - + 1; + + 2; char __nar[__nbuf]; #ifdef _LIBCPP_LOCALE__L_EXTENSIONS int __nc = snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v); diff --git a/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/minus1.pass b/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/minus1.pass new file mode 100644 index 00000000..27b8cfd8 --- /dev/null +++ b/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/minus1.pass @@ -0,0 +1,84 @@ +//===----------------------------------------------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +// + +// template > +// class basic_ostream; + +// operator<<( int16_t val); +// operator<<(uint16_t val); +// operator<<( int32_t val); +// operator<<(uint32_t val); +// operator<<( int64_t val); +// operator<<(uint64_t val); + +// Testing to make sure that the max length values are correctly inserted + +#include +#include +#include + +template +void test_octal(const char *expected) +{ + std::stringstream ss; + ss << std::oct << static_cast(-1); + + assert(ss.str() == expected); +} + +template +void test_dec(const char *expected) +{ + std::stringstream ss; + ss << std::dec << static_cast(-1); + +// std::cout << ss.str() << " " << expected << std::endl; + assert(ss.str() == expected); +} + +template +void test_hex(const char *expected) +{ + std::stringstream ss; + ss << std::hex << static_cast(-1); + + std::string str = ss.str(); + for (size_t i = 0; i < str.size(); ++i ) + str[i] = std::toupper(str[i]); + + assert(str == expected); +} + +int main(int argc, char* argv[]) +{ + test_octal( "177777"); + test_octal< int16_t>( "177777"); + test_octal( "37777777777"); + test_octal< int32_t>( "37777777777"); + test_octal("1777777777777777777777"); + test_octal< int64_t>("1777777777777777777777"); + + test_dec( "65535"); + test_dec< int16_t>( "-1"); + test_dec( "4294967295"); + test_dec< int32_t>( "-1"); + test_dec("18446744073709551615"); + test_dec< int64_t>( "-1"); + + test_hex( "FFFF"); + test_hex< int16_t>( "FFFF"); + test_hex( "FFFFFFFF"); + test_hex< int32_t>( "FFFFFFFF"); + test_hex("FFFFFFFFFFFFFFFF"); + test_hex< int64_t>("FFFFFFFFFFFFFFFF"); + + return 0; +}