From 6f90dfd106c5f20d24fd0a2ea965d690f6ed1054 Mon Sep 17 00:00:00 2001 From: Daiki Ueno Date: Fri, 11 Dec 2015 11:50:18 +0900 Subject: [PATCH] Update sources --- .gitignore | 1 + msgpack-fix-int-float-test.patch | 30 ------------------------------ sources | 2 +- 3 files changed, 2 insertions(+), 31 deletions(-) delete mode 100644 msgpack-fix-int-float-test.patch diff --git a/.gitignore b/.gitignore index 0eece18..f3162d8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /msgpack-0.5.7.tar.gz /msgpack-0.5.8.tar.gz /msgpack-0.5.9.tar.gz +/msgpack-1.3.0.tar.gz diff --git a/msgpack-fix-int-float-test.patch b/msgpack-fix-int-float-test.patch deleted file mode 100644 index 4f49adc..0000000 --- a/msgpack-fix-int-float-test.patch +++ /dev/null @@ -1,30 +0,0 @@ -From c203928fae924e017f39afb2723414d458fc01a1 Mon Sep 17 00:00:00 2001 -From: Daiki Ueno -Date: Thu, 17 Jul 2014 18:38:04 +0900 -Subject: [PATCH] Fix test failure regarding int->float conversion - -Supply only small integers (< 1^24) to int->float conversion tests, -so they can roundtrip without error. ---- - test/msgpack_test.cpp | 4 +--- - 1 file changed, 1 insertion(+), 3 deletions(-) - -diff --git a/test/msgpack_test.cpp b/test/msgpack_test.cpp -index fb35c68..6917caf 100644 ---- a/test/msgpack_test.cpp -+++ b/test/msgpack_test.cpp -@@ -201,10 +201,8 @@ TYPED_TEST_P(IntegerToFloatingPointTest, simple_buffer) - v.push_back(1); - if (numeric_limits::is_signed) v.push_back(-1); - else v.push_back(2); -- v.push_back(numeric_limits::min()); -- v.push_back(numeric_limits::max()); - for (unsigned int i = 0; i < kLoop; i++) { -- v.push_back(rand()); -+ v.push_back(rand() % 0x7FFFFF); - } - for (unsigned int i = 0; i < v.size() ; i++) { - msgpack::sbuffer sbuf; --- -1.9.3 - diff --git a/sources b/sources index 59cc2bf..7df2c7b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -7645691e6966421c817a0b6f6f306112 msgpack-0.5.9.tar.gz +22f122176507f1bab479598f52f1b005 msgpack-1.3.0.tar.gz