summaryrefslogtreecommitdiffstats
path: root/tests/manual/recovery_test.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2016-12-22 18:38:34 +0100
committerandroid-build-merger <android-build-merger@google.com>2016-12-22 18:38:34 +0100
commitfe3993f31589fb2d9dfe71d4c32cf3ada547a20b (patch)
treec7cd602a1093dc08f03b917ca42d9383207218e9 /tests/manual/recovery_test.cpp
parentMerge "tests: Add testcase for ZipUtil." am: aa305e9ce8 am: 6df1c4579e am: 830ab1c482 (diff)
parentMerge "tests: Replace the O_RDONLY in access(2)." am: 3b9645288e am: baf422229d (diff)
downloadandroid_bootable_recovery-fe3993f31589fb2d9dfe71d4c32cf3ada547a20b.tar
android_bootable_recovery-fe3993f31589fb2d9dfe71d4c32cf3ada547a20b.tar.gz
android_bootable_recovery-fe3993f31589fb2d9dfe71d4c32cf3ada547a20b.tar.bz2
android_bootable_recovery-fe3993f31589fb2d9dfe71d4c32cf3ada547a20b.tar.lz
android_bootable_recovery-fe3993f31589fb2d9dfe71d4c32cf3ada547a20b.tar.xz
android_bootable_recovery-fe3993f31589fb2d9dfe71d4c32cf3ada547a20b.tar.zst
android_bootable_recovery-fe3993f31589fb2d9dfe71d4c32cf3ada547a20b.zip
Diffstat (limited to 'tests/manual/recovery_test.cpp')
-rw-r--r--tests/manual/recovery_test.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/manual/recovery_test.cpp b/tests/manual/recovery_test.cpp
index e83849546..e73cb1509 100644
--- a/tests/manual/recovery_test.cpp
+++ b/tests/manual/recovery_test.cpp
@@ -14,7 +14,6 @@
* limitations under the License.
*/
-#include <fcntl.h>
#include <string.h>
#include <sys/types.h>
#include <unistd.h>
@@ -79,7 +78,7 @@ TEST(recovery, persist) {
std::string buf;
EXPECT_TRUE(android::base::ReadFileToString(myFilename, &buf));
EXPECT_EQ(myContent, buf);
- if (access(myFilename.c_str(), O_RDONLY) == 0) {
+ if (access(myFilename.c_str(), F_OK) == 0) {
fprintf(stderr, "Removing persistent test data, "
"check if reconstructed on reboot\n");
}