OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:golden_file
(Results
1 - 8
of
8
) sorted by null
/external/chromium/testing/gmock/test/
gmock_output_test.py
159
golden_file
= open(GOLDEN_PATH, 'rb')
160
golden =
golden_file
.read()
161
golden_file
.close()
176
golden_file
= open(GOLDEN_PATH, 'wb')
177
golden_file
.write(output)
178
golden_file
.close()
/external/chromium/testing/gtest/test/
gtest_output_test.py
281
golden_file
= open(GOLDEN_PATH, 'rb')
286
golden = ToUnixLineEnding(
golden_file
.read())
287
golden_file
.close()
322
golden_file
= open(GOLDEN_PATH, 'wb')
323
golden_file
.write(output)
324
golden_file
.close()
/external/chromium_org/testing/gtest/test/
gtest_output_test.py
281
golden_file
= open(GOLDEN_PATH, 'rb')
286
golden = ToUnixLineEnding(
golden_file
.read())
287
golden_file
.close()
322
golden_file
= open(GOLDEN_PATH, 'wb')
323
golden_file
.write(output)
324
golden_file
.close()
/external/gtest/test/
gtest_output_test.py
281
golden_file
= open(GOLDEN_PATH, 'rb')
286
golden = ToUnixLineEnding(
golden_file
.read())
287
golden_file
.close()
322
golden_file
= open(GOLDEN_PATH, 'wb')
323
golden_file
.write(output)
324
golden_file
.close()
/external/protobuf/gtest/test/
gtest_output_test.py
255
golden_file
= open(GOLDEN_PATH, 'rb')
260
golden = ToUnixLineEnding(
golden_file
.read())
261
golden_file
.close()
289
golden_file
= open(GOLDEN_PATH, 'wb')
290
golden_file
.write(output)
291
golden_file
.close()
/ndk/sources/third_party/googletest/googletest/test/
gtest_output_test.py
281
golden_file
= open(GOLDEN_PATH, 'rb')
286
golden = ToUnixLineEnding(
golden_file
.read())
287
golden_file
.close()
322
golden_file
= open(GOLDEN_PATH, 'wb')
323
golden_file
.write(output)
324
golden_file
.close()
/external/chromium_org/base/android/jni_generator/
jni_generator_tests.py
81
def _ReadGoldenFile(self,
golden_file
):
82
if not os.path.exists(
golden_file
):
84
with file(
golden_file
, 'r') as f:
94
golden_file
= os.path.join(script_dir, caller + '.golden')
95
golden_text = self._ReadGoldenFile(
golden_file
)
98
with file(
golden_file
, 'w') as f:
[
all
...]
/external/chromium_org/ppapi/native_client/
chrome_main.scons
366
# Compares output_file and
golden_file
.
369
def CheckGoldenFile(
golden_file
, output_file,
371
golden = open(
golden_file
).read()
384
# Returns action that compares output_file and
golden_file
.
387
def GoldenFileCheckAction(env, output_file,
golden_file
,
391
return CheckGoldenFile(env.subst(
golden_file
), env.subst(output_file),
517
golden_file
= env.subst(params['golden'])
523
env, stream_file,
golden_file
,
Completed in 573 milliseconds