diff options
| author | Marshall Clow <mclow.lists@gmail.com> | 2015-01-26 17:24:52 +0000 |
|---|---|---|
| committer | Marshall Clow <mclow.lists@gmail.com> | 2015-01-26 17:24:52 +0000 |
| commit | 07ef8e67962192f2beadb2153d97975243a17b17 (patch) | |
| tree | b299621dee76aeec5d37c992ccf3658197f0d1d4 /libcxx/test | |
| parent | 0bf09687fb624c78e97d2546216558e25c9f4cb3 (diff) | |
| download | bcm5719-llvm-07ef8e67962192f2beadb2153d97975243a17b17.tar.gz bcm5719-llvm-07ef8e67962192f2beadb2153d97975243a17b17.zip | |
Fix PR21428. Buffer was one byte too small in octal formatting case. Add test
llvm-svn: 227097
Diffstat (limited to 'libcxx/test')
| -rw-r--r-- | libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/minus1.pass | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/minus1.pass b/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/minus1.pass new file mode 100644 index 00000000000..27b8cfd85c9 --- /dev/null +++ b/libcxx/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. +// +//===----------------------------------------------------------------------===// + +// <ostream> + +// template <class charT, class traits = char_traits<charT> > +// 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 <iostream> +#include <sstream> +#include <cassert> + +template <typename T> +void test_octal(const char *expected) +{ + std::stringstream ss; + ss << std::oct << static_cast<T>(-1); + + assert(ss.str() == expected); +} + +template <typename T> +void test_dec(const char *expected) +{ + std::stringstream ss; + ss << std::dec << static_cast<T>(-1); + +// std::cout << ss.str() << " " << expected << std::endl; + assert(ss.str() == expected); +} + +template <typename T> +void test_hex(const char *expected) +{ + std::stringstream ss; + ss << std::hex << static_cast<T>(-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<uint16_t>( "177777"); + test_octal< int16_t>( "177777"); + test_octal<uint32_t>( "37777777777"); + test_octal< int32_t>( "37777777777"); + test_octal<uint64_t>("1777777777777777777777"); + test_octal< int64_t>("1777777777777777777777"); + + test_dec<uint16_t>( "65535"); + test_dec< int16_t>( "-1"); + test_dec<uint32_t>( "4294967295"); + test_dec< int32_t>( "-1"); + test_dec<uint64_t>("18446744073709551615"); + test_dec< int64_t>( "-1"); + + test_hex<uint16_t>( "FFFF"); + test_hex< int16_t>( "FFFF"); + test_hex<uint32_t>( "FFFFFFFF"); + test_hex< int32_t>( "FFFFFFFF"); + test_hex<uint64_t>("FFFFFFFFFFFFFFFF"); + test_hex< int64_t>("FFFFFFFFFFFFFFFF"); + + return 0; +} |

