summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2017-07-20 01:12:20 +0200
committerandroid-build-merger <android-build-merger@google.com>2017-07-20 01:12:20 +0200
commitf2a279adb556649d41cd7750e22be1cc6bce62e5 (patch)
treec742e5f7fe9b9cd3232aefdcb408b763f519e0d1 /tests
parentMerge "Fix the missing char when showing recovery logs." am: 8155a8ba74 am: c61bbe158e (diff)
parentMerge "Fix the android-cloexec-* warnings in bootable/recovery" am: 94a8ea1797 (diff)
downloadandroid_bootable_recovery-f2a279adb556649d41cd7750e22be1cc6bce62e5.tar
android_bootable_recovery-f2a279adb556649d41cd7750e22be1cc6bce62e5.tar.gz
android_bootable_recovery-f2a279adb556649d41cd7750e22be1cc6bce62e5.tar.bz2
android_bootable_recovery-f2a279adb556649d41cd7750e22be1cc6bce62e5.tar.lz
android_bootable_recovery-f2a279adb556649d41cd7750e22be1cc6bce62e5.tar.xz
android_bootable_recovery-f2a279adb556649d41cd7750e22be1cc6bce62e5.tar.zst
android_bootable_recovery-f2a279adb556649d41cd7750e22be1cc6bce62e5.zip
Diffstat (limited to 'tests')
-rw-r--r--tests/component/updater_test.cpp4
-rw-r--r--tests/manual/recovery_test.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/component/updater_test.cpp b/tests/component/updater_test.cpp
index 357a39ef7..01b86f224 100644
--- a/tests/component/updater_test.cpp
+++ b/tests/component/updater_test.cpp
@@ -485,7 +485,7 @@ TEST_F(UpdaterTest, block_image_update) {
UpdaterInfo updater_info;
updater_info.package_zip = handle;
TemporaryFile temp_pipe;
- updater_info.cmd_pipe = fopen(temp_pipe.path, "wb");
+ updater_info.cmd_pipe = fopen(temp_pipe.path, "wbe");
updater_info.package_zip_addr = map.addr;
updater_info.package_zip_len = map.length;
@@ -561,7 +561,7 @@ TEST_F(UpdaterTest, new_data_short_write) {
UpdaterInfo updater_info;
updater_info.package_zip = handle;
TemporaryFile temp_pipe;
- updater_info.cmd_pipe = fopen(temp_pipe.path, "wb");
+ updater_info.cmd_pipe = fopen(temp_pipe.path, "wbe");
updater_info.package_zip_addr = map.addr;
updater_info.package_zip_len = map.length;
diff --git a/tests/manual/recovery_test.cpp b/tests/manual/recovery_test.cpp
index d36dd331e..92c6ef2d4 100644
--- a/tests/manual/recovery_test.cpp
+++ b/tests/manual/recovery_test.cpp
@@ -141,7 +141,7 @@ class ResourceTest : public testing::TestWithParam<std::string> {
// under recovery.
void SetUp() override {
std::string file_path = GetParam();
- fp = fopen(file_path.c_str(), "rb");
+ fp = fopen(file_path.c_str(), "rbe");
ASSERT_NE(nullptr, fp);
unsigned char header[8];