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

Change-Id: I66476bbbaf5d1dc0c103863abf9219405f06a85b
This commit is contained in:
Christopher Ferris 2013-08-27 17:21:37 -07:00
parent 1f216e30b6
commit 5227bb363d

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);