summaryrefslogtreecommitdiffstats
path: root/tests/manual
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2017-07-20 09:27:35 +0200
committerandroid-build-team Robot <android-build-team-robot@google.com>2017-07-20 09:27:35 +0200
commit9030a47ab4ce9369eaeda08eeaad764fcebc8ce4 (patch)
tree38c38831f3a8bff345a92e1e8e85bfa57db480b7 /tests/manual
parentrelease-request-05263112-375a-4b1f-a657-a14bb2a5c5a3-for-git_oc-mr1-release-4185249 snap-temp-L63000000082739046 (diff)
parentMerge "Fix the android-cloexec-* warnings in bootable/recovery" am: 94a8ea1797 am: 6d8827e0d3 am: 96b5bb9601 (diff)
downloadandroid_bootable_recovery-9030a47ab4ce9369eaeda08eeaad764fcebc8ce4.tar
android_bootable_recovery-9030a47ab4ce9369eaeda08eeaad764fcebc8ce4.tar.gz
android_bootable_recovery-9030a47ab4ce9369eaeda08eeaad764fcebc8ce4.tar.bz2
android_bootable_recovery-9030a47ab4ce9369eaeda08eeaad764fcebc8ce4.tar.lz
android_bootable_recovery-9030a47ab4ce9369eaeda08eeaad764fcebc8ce4.tar.xz
android_bootable_recovery-9030a47ab4ce9369eaeda08eeaad764fcebc8ce4.tar.zst
android_bootable_recovery-9030a47ab4ce9369eaeda08eeaad764fcebc8ce4.zip
Diffstat (limited to 'tests/manual')
-rw-r--r--tests/manual/recovery_test.cpp2
1 files changed, 1 insertions, 1 deletions
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];