summaryrefslogtreecommitdiff
path: root/tests/fstest
diff options
context:
space:
mode:
authorYusuke Sato <yusukes@google.com>2015-08-18 12:10:45 -0700
committerYusuke Sato <yusukes@google.com>2015-08-18 23:08:55 -0700
commitfaba3263b7d4c1c057ca9d1291f258860c1359a5 (patch)
tree4ded29dc93643b739a1611e5ef07d4e3e86c790b /tests/fstest
parent89a2254abae3f427aa85fb3a3afe9a27cdfad68d (diff)
downloadextras-faba3263b7d4c1c057ca9d1291f258860c1359a5.tar.gz
Use the new version of android_fork_execvp_ext()
This CL depends on I818f5cf61045286c8d64a91b6d50f05740329be1. Bug: 21725996 Change-Id: I2d26cf79989de717b7695757d0297a16dedbebbd
Diffstat (limited to 'tests/fstest')
-rw-r--r--tests/fstest/recovery_test.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/fstest/recovery_test.cpp b/tests/fstest/recovery_test.cpp
index 4121a871..f8d41c31 100644
--- a/tests/fstest/recovery_test.cpp
+++ b/tests/fstest/recovery_test.cpp
@@ -222,7 +222,8 @@ class FsRecoveryTest : public ::testing::Test {
};
int status;
return android_fork_execvp_ext(ARRAY_SIZE(umount_argv), umount_argv,
- NULL, true, LOG_KLOG, false, NULL) >= 0;
+ NULL, true, LOG_KLOG, false, NULL,
+ NULL, 0) >= 0;
}
bool mountAll() {
@@ -233,7 +234,8 @@ class FsRecoveryTest : public ::testing::Test {
};
int status;
return android_fork_execvp_ext(ARRAY_SIZE(mountall_argv), mountall_argv,
- NULL, true, LOG_KLOG, false, NULL) >= 0;
+ NULL, true, LOG_KLOG, false, NULL,
+ NULL, 0) >= 0;
}
int getCacheBlkFd() {