Searched refs:expected_file (Results 1 – 9 of 9) sorted by relevance
17 const char* expected_file) const;22 const char* expected_file) const { in TestApplyingOldPatch()25 std::string expected_buffer = FileContents(expected_file); in TestApplyingOldPatch()
87 const base::FilePath expected_file = GetInstalledPath(install_dir); in VerifyInstallation() local88 VLOG(1) << "Verifying install: " << expected_file.value(); in VerifyInstallation()89 const bool result = base::PathExists(expected_file); in VerifyInstallation()
43 with open(metadata_path, 'r') as expected_file:44 return expected_file.read() != device.GetInstallMetadata(apk_package)
180 base::FilePath expected_file = in RunTest() local183 base::ReadFileToString(expected_file, &expected_contents_raw); in RunTest()273 if (!base::PathExists(expected_file)) { in RunTest()283 << expected_file.LossyDisplayName(); in RunTest()
56 def CheckNamespace(expected_file, expected_list, fs): argument57 self.assertEqual(expected_file, fs._file_object_store.namespace)
287 with open(expected_file_path, 'rb') as expected_file:288 commited_contents = expected_file.read()
299 expected_file = '{0}.opt_test.expected'.format(test_name)300 with open(expected_file, 'w') as f: