aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-11-28Merge remote-tracking branch 'aosp/upstream-master' into HEADHEADmastermainemu-35-1-releaseemu-34-releaseemu-34-3-releaseemu-34-2-releaseemu-34-2-devemu-33-releaseemu-33-devemu-32-releaseemu-32-devemu-31-stable-releaseemu-31-releaseemu-30-releaseemu-29.0-releaseaosp-emu-30-releaseErwin Jansen
Change-Id: I3cacc9da948c56f15cb96f03a2142ffab4f65846
2018-11-28Merge pull request #2 from pokowaka/masterJeff McGlynn
Explicitly set ctest command.
2018-11-27Explicitly set ctest command.Erwin Jansen
Some generators have trouble finding base_test if this project is included as a subproject. Explicitly setting the test name and executable command will fix this issue.
2018-11-27Merge pull request #1 from pokowaka/masterJeff McGlynn
CMake support to enable compilation under Visual Studio
2018-11-27CMake support to enable compilation under Visual StudioErwin Jansen
- Add support for cmake - Template fix to enable compilation with visual studio. - Exclusion of static type tests under visual studio - Fix unit tests due to declaration issues Note we do not build the fuzzing target. Test: All unit tests green on VS2017, MacOs, Linux Change-Id: Ie8437f61d187fff03279c99fde0ff565e8f39b50
2018-08-16Fix ASAN failures in integer_sequence_codec and partitionJeff McGlynn
Introduce UTILS_RELEASE_ASSERT, which crashes if the condition isn't met, even on release builds. Update integer_sequence_codec and partition to use the new tests to validate input parameters, and update the tests so that they expect the crash to occur even on release builds. Bug: 112691516, 112669735 Change-Id: Ic82edeffc64ca0f2b0d17f1c63563dfd8d9cdd71
2018-08-16Fix ASAN failures in integer_sequence_codec and partitionemu-master-qemu-releaseemu-3.1-releaseemu-3.0-releaseJeff McGlynn
Introduce UTILS_RELEASE_ASSERT, which crashes if the condition isn't met, even on release builds. Update integer_sequence_codec and partition to use the new tests to validate input parameters, and update the tests so that they expect the crash to occur even on release builds. Bug: 112691516, 112669735 Change-Id: Ic82edeffc64ca0f2b0d17f1c63563dfd8d9cdd71
2018-08-16Revert "Disable problematic test that trips ASAN"Jeff McGlynn
This reverts commit 692fbf5865f2f5c470651aa0f56e491bbc7fffae. The fix has been prepared and will be uploaded alongside this revert.
2018-08-16Disable problematic test that trips ASANLingfeng Yang
bug: 112691516 Change-Id: I129db7811e251f200f33d710409397e651d8a600
2018-08-15Merge remote-tracking branch 'aosp/upstream-master' into masterJeff McGlynn
Change-Id: Iaf074ead8ed429207d82493066d0c495d3dbd615
2018-08-15Fix compilation errors with mingwJeff McGlynn
Fix minor build errors when building with mingw in the Android Emulator's build system: * Passing initializer list to pushAll helper can't deduce template argument with mingw, fix by adding an explicit type. * Add inline to image_utils helpers so that mingw doesn't think that the functions are declared but not used. Change-Id: I223e1a74380f9990dbab13ce41e377c3004f43b0
2018-08-07Merge changes from upstream-masterJeff McGlynn
* Fix build with googletest-1.8.0 and when linking unittests into a single binary. Change-Id: I0555fe7d15c28c774f2c4534888829a23f0e5f62
2018-08-07Fix build errors when used by the Android EmulatorJeff McGlynn
In the Android Emulator, there are two main differences: 1) googletest is the shared version 1.8.0, instead of the later commit used by astc-codec (to get bazel support). 2) Unit tests are all linked together into one binary, so one function needs to be marked "static".
2018-08-03Initial merge of upstream-master.Jeff McGlynn
Change-Id: Ib07210f16b222f5e2469a99011ebc732883e4cec
2018-07-27Initial empty repositoryInna Palant
2018-07-26Remove third_party/googletest and reference git repo insteadJeff McGlynn
Use a Bazel git_repository rule to reference the git repository instead of bundling the source. Change-Id: I32a0970178cb87fbf0e381db2e2d51fcccab542f
2018-07-06Fix compilation with mingwJeff McGlynn
On mingw, "IntType data_ = 0" fails to compile. Update to use IntType() instead. Change-Id: I706c15ddb993091aeb922ba7d9ef8cc4cc23bd64
2018-06-20Initial version of astc-codec for open source releaseJeff McGlynn
Contains an implementation of an ASTC decoder that is able to pass the dEQP ASTC LDR tests. astc-codec has no external dependencies for the main library, only for test code, and is licensed under the Apache license. Components: include/ - Public API that can decode ASTC LDR data into a RGBA UNORM8 buffer. src/base/ - Base library with common functionality not directly related to ASTC decoding. Contains a uint128 implementation, BitStream for reading/writing bits with a primitive (or uint128 type), Optional implementation (to not take a dependency on C++17), and more. src/decoder/ - Internal implementation of the ASTC decoder. src/base/test/, src/decoder/test/ - Unit tests (and a fuzzing test) for the astc decoder. src/decoder/testdata/ - Sample ASTC images and golden image results for testing. src/decoder/tools/ - A tool to inspect contents of an ASTC file. third_party/ - Third party libraries, only used for tests. Change-Id: Ia98e5a7dc847daa3d3a48c5e62d94b8fb1cb98bd
2018-06-18Set up build system and add dependencies to WORKSPACEJeff McGlynn
2018-06-18Merge commit 'fa9c8eaf4fe936f35dd95a1eecfbbb228494522d' as ↵Jeff McGlynn
'third_party/googletest'
2018-06-18Squashed 'third_party/googletest/' content from commit ba96d0b1Jeff McGlynn
git-subtree-dir: third_party/googletest git-subtree-split: ba96d0b1161f540656efdaed035b3c062b60e006
2018-06-18Add license and README based on Google open source templateJeff McGlynn