Change hard-coded directory.

The tests are using /data/data which is not accessible to a non-root
user. Change this to /data/local/tmp which is accessible to all users.

Bug: 8291716

(cherry picked from commit 5227bb363dfdd0a4570cfa3d0735744daf7d83c2)

Change-Id: I83bf70aa8edd21b00321363d7ddcb65a5f048ba5
This commit is contained in:
Christopher Ferris 2013-08-27 17:21:37 -07:00
parent 6d1f85dcdc
commit 7bfef355b1

View File

@ -35,7 +35,7 @@ TEST(statvfs, statvfs) {
#endif
#if __BIONIC__
ASSERT_EQ(0, statvfs("/data/data", &sb));
ASSERT_EQ(0, statvfs("/data/local/tmp", &sb));
ASSERT_NE(0U, sb.f_bfree);
ASSERT_NE(0U, sb.f_ffree);
ASSERT_NE(0U, sb.f_fsid);
@ -59,7 +59,7 @@ TEST(statvfs, fstatvfs) {
#endif
#if __BIONIC__
fd = open("/data/data", O_RDONLY);
fd = open("/data/local/tmp", O_RDONLY);
ASSERT_EQ(0, fstatvfs(fd, &sb));
close(fd);
ASSERT_NE(0U, sb.f_bfree);