[protozero] branch upstream updated (515c9d9 -> 4337a08)
Sebastiaan Couwenberg
sebastic at moszumanska.debian.org
Fri Feb 19 10:55:57 UTC 2016
This is an automated email from the git hooks/post-receive script.
sebastic pushed a change to branch upstream
in repository protozero.
from 515c9d9 Imported Upstream version 1.2.3
new 4337a08 Imported Upstream version 1.3.0
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
.npmignore | 33 +
.travis.yml | 150 +-
CHANGELOG.md | 21 +-
CONTRIBUTING.md | 17 +
Makefile | 12 +-
README.md | 2 +-
build-appveyor.bat | 12 +-
common.gypi => gyp/common.gypi | 0
gyp/protozero.gyp | 37 +
include/protozero/config.hpp | 4 +-
include/protozero/exception.hpp | 8 +-
include/protozero/pbf_builder.hpp | 14 +-
include/protozero/pbf_message.hpp | 2 +-
include/protozero/pbf_reader.hpp | 40 +-
include/protozero/pbf_writer.hpp | 202 +-
include/protozero/{pbf_types.hpp => types.hpp} | 8 +-
include/protozero/varint.hpp | 4 +-
include/protozero/version.hpp | 6 +-
package.json | 10 +
protozero.gyp | 37 -
test/include/catch.hpp | 3045 ++++++++++++--------
test/include/scalar_access.hpp | 111 +
test/include/test.hpp | 6 +
test/t/{fixed32 => alignment}/test_cases.cpp | 89 +-
test/t/fixed32/{data-max-uint.pbf => data-max.pbf} | 0
test/t/fixed32/data-min-uint.pbf | Bin 5 -> 0 bytes
test/t/fixed32/data-pos.pbf | Bin 0 -> 5 bytes
test/t/fixed32/test_cases.cpp | 109 +-
test/t/fixed32/testcase.cpp | 8 +-
test/t/fixed32/writer_test_cases.cpp | 4 +-
test/t/fixed64/{data-max-uint.pbf => data-max.pbf} | 0
test/t/fixed64/data-min-uint.pbf | Bin 9 -> 0 bytes
test/t/fixed64/data-pos.pbf | Bin 0 -> 9 bytes
test/t/fixed64/test_cases.cpp | 79 +-
test/t/fixed64/testcase.cpp | 8 +-
test/t/float/test_cases.cpp | 6 +-
test/t/int32/test_cases.cpp | 118 +-
test/t/int64/data-overflow.pbf | 1 -
test/t/int64/test_cases.cpp | 107 +-
test/t/int64/testcase.cpp | 10 -
test/t/message/test_cases.cpp | 46 +
test/t/repeated_packed_bool/test_cases.cpp | 36 +
test/t/repeated_packed_fixed32/test_cases.cpp | 72 +
test/t/repeated_packed_int64/test_cases.cpp | 38 +
test/t/repeated_packed_sint64/test_cases.cpp | 38 +
test/t/rollback/test_cases.cpp | 214 ++
test/t/sfixed32/{data-max-int.pbf => data-max.pbf} | 0
test/t/sfixed32/{data-min-int.pbf => data-min.pbf} | Bin
.../data-max-uint.pbf => sfixed32/data-neg.pbf} | 0
test/t/sfixed32/data-pos.pbf | Bin 0 -> 5 bytes
test/t/sfixed32/test_cases.cpp | 68 +-
test/t/sfixed32/testcase.cpp | 10 +-
test/t/sfixed64/{data-max-int.pbf => data-max.pbf} | 0
test/t/sfixed64/{data-min-int.pbf => data-min.pbf} | Bin
.../data-max-uint.pbf => sfixed64/data-neg.pbf} | 0
test/t/sfixed64/data-pos.pbf | Bin 0 -> 9 bytes
test/t/sfixed64/test_cases.cpp | 68 +-
test/t/sfixed64/testcase.cpp | 10 +-
test/t/sint32/test_cases.cpp | 98 +-
test/t/sint64/test_cases.cpp | 98 +-
test/t/skip/test_cases.cpp | 16 +-
test/t/string/test_cases.cpp | 9 -
test/t/uint32/test_cases.cpp | 68 +-
test/t/uint64/test_cases.cpp | 68 +-
test/t/wrong_type_access/test_cases.cpp | 55 +
tutorial.md | 119 +-
66 files changed, 3236 insertions(+), 2215 deletions(-)
create mode 100644 .npmignore
create mode 100644 CONTRIBUTING.md
rename common.gypi => gyp/common.gypi (100%)
create mode 100644 gyp/protozero.gyp
rename include/protozero/{pbf_types.hpp => types.hpp} (91%)
create mode 100644 package.json
delete mode 100644 protozero.gyp
create mode 100644 test/include/scalar_access.hpp
copy test/t/{fixed32 => alignment}/test_cases.cpp (51%)
copy test/t/fixed32/{data-max-uint.pbf => data-max.pbf} (100%)
delete mode 100644 test/t/fixed32/data-min-uint.pbf
create mode 100644 test/t/fixed32/data-pos.pbf
copy test/t/fixed64/{data-max-uint.pbf => data-max.pbf} (100%)
delete mode 100644 test/t/fixed64/data-min-uint.pbf
create mode 100644 test/t/fixed64/data-pos.pbf
delete mode 100644 test/t/int64/data-overflow.pbf
create mode 100644 test/t/rollback/test_cases.cpp
rename test/t/sfixed32/{data-max-int.pbf => data-max.pbf} (100%)
rename test/t/sfixed32/{data-min-int.pbf => data-min.pbf} (100%)
rename test/t/{fixed32/data-max-uint.pbf => sfixed32/data-neg.pbf} (100%)
create mode 100644 test/t/sfixed32/data-pos.pbf
rename test/t/sfixed64/{data-max-int.pbf => data-max.pbf} (100%)
rename test/t/sfixed64/{data-min-int.pbf => data-min.pbf} (100%)
rename test/t/{fixed64/data-max-uint.pbf => sfixed64/data-neg.pbf} (100%)
create mode 100644 test/t/sfixed64/data-pos.pbf
create mode 100644 test/t/wrong_type_access/test_cases.cpp
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/protozero.git
More information about the Pkg-grass-devel
mailing list