Home
last modified time | relevance | path

Searched refs:expectFileMode (Results 1 – 1 of 1) sorted by relevance

/packages/modules/Virtualization/authfs/tests/hosttests/java/src/com/android/fs/
DAuthFsHostTest.java568 expectFileMode("--wx-w---x", MOUNT_DIR + "/3", TEST_OUTPUT_DIR + "/file"); in testChmod_File()
585 expectFileMode("drwxrwxrwx", authfsOutputDir + "/dir", TEST_OUTPUT_DIR + "/dir"); in testChmod_Dir()
586 expectFileMode("drwxr-xr-x", authfsOutputDir + "/dir/dir2", TEST_OUTPUT_DIR + "/dir/dir2"); in testChmod_Dir()
589 expectFileMode("dr-xr-xr-x", authfsOutputDir + "/dir/dir2", TEST_OUTPUT_DIR + "/dir/dir2"); in testChmod_Dir()
591 expectFileMode("d-wx-w---x", authfsOutputDir + "/dir", TEST_OUTPUT_DIR + "/dir"); in testChmod_Dir()
609 expectFileMode("-rw-rw-rw-", authfsOutputDir + "/file", TEST_OUTPUT_DIR + "/file"); in testChmod_FileInOutputDirectory()
610 expectFileMode("-rw-r--r--", authfsOutputDir + "/file2", TEST_OUTPUT_DIR + "/file2"); in testChmod_FileInOutputDirectory()
613 expectFileMode("-r--r--r--", authfsOutputDir + "/file", TEST_OUTPUT_DIR + "/file"); in testChmod_FileInOutputDirectory()
615 expectFileMode("--wx-w---x", authfsOutputDir + "/file2", TEST_OUTPUT_DIR + "/file2"); in testChmod_FileInOutputDirectory()
665 private void expectFileMode(String expected, String microdroidPath, String androidPath) in expectFileMode() method in AuthFsHostTest