diff options
author | android-build-prod (mdb) <android-build-team-robot@google.com> | 2018-05-04 19:43:36 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2018-05-04 19:43:36 +0200 |
commit | 13415d9138556586281f032c4f84d329c9f2cb77 (patch) | |
tree | d1ca1805b021c8e7c19d33f0ccbc50d65f7a488a /tests/unit | |
parent | Merge "otautil: Only build the needed files for host build." am: 5818e894df (diff) | |
parent | Merge changes I1cc5d702,I32ab9854 (diff) | |
download | android_bootable_recovery-13415d9138556586281f032c4f84d329c9f2cb77.tar android_bootable_recovery-13415d9138556586281f032c4f84d329c9f2cb77.tar.gz android_bootable_recovery-13415d9138556586281f032c4f84d329c9f2cb77.tar.bz2 android_bootable_recovery-13415d9138556586281f032c4f84d329c9f2cb77.tar.lz android_bootable_recovery-13415d9138556586281f032c4f84d329c9f2cb77.tar.xz android_bootable_recovery-13415d9138556586281f032c4f84d329c9f2cb77.tar.zst android_bootable_recovery-13415d9138556586281f032c4f84d329c9f2cb77.zip |
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/dirutil_test.cpp | 3 | ||||
-rw-r--r-- | tests/unit/sysutil_test.cpp | 5 | ||||
-rw-r--r-- | tests/unit/zip_test.cpp | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/tests/unit/dirutil_test.cpp b/tests/unit/dirutil_test.cpp index 7f85d13ea..1ca786c28 100644 --- a/tests/unit/dirutil_test.cpp +++ b/tests/unit/dirutil_test.cpp @@ -22,7 +22,8 @@ #include <android-base/test_utils.h> #include <gtest/gtest.h> -#include <otautil/DirUtil.h> + +#include "otautil/dirutil.h" TEST(DirUtilTest, create_invalid) { // Requesting to create an empty dir is invalid. diff --git a/tests/unit/sysutil_test.cpp b/tests/unit/sysutil_test.cpp index 434ee25bf..19fa4c59e 100644 --- a/tests/unit/sysutil_test.cpp +++ b/tests/unit/sysutil_test.cpp @@ -14,14 +14,13 @@ * limitations under the License. */ -#include <gtest/gtest.h> - #include <string> #include <android-base/file.h> #include <android-base/test_utils.h> +#include <gtest/gtest.h> -#include "otautil/SysUtil.h" +#include "otautil/sysutil.h" TEST(SysUtilTest, InvalidArgs) { MemMapping mapping; diff --git a/tests/unit/zip_test.cpp b/tests/unit/zip_test.cpp index 827668521..47f33d9ea 100644 --- a/tests/unit/zip_test.cpp +++ b/tests/unit/zip_test.cpp @@ -23,10 +23,10 @@ #include <android-base/file.h> #include <android-base/test_utils.h> #include <gtest/gtest.h> -#include <otautil/SysUtil.h> #include <ziparchive/zip_archive.h> #include "common/test_constants.h" +#include "otautil/sysutil.h" TEST(ZipTest, OpenFromMemory) { std::string zip_path = from_testdata_base("ziptest_dummy-update.zip"); |