Home
last modified time | relevance | path

Searched refs:logAssociation (Results 1 – 25 of 39) sorted by relevance

12

/tools/tradefederation/core/javatests/com/android/tradefed/result/proto/
DProtoResultParserTest.java196 mTestParser.logAssociation("log1", logFile); in testEvents()
202 mTestParser.logAssociation( in testEvents()
206 mTestParser.logAssociation( in testEvents()
210 mTestParser.logAssociation( in testEvents()
225 .logAssociation(Mockito.eq("subprocess-log1"), capture.capture()); in testEvents()
228 .logAssociation(Mockito.eq("subprocess-run_log1"), Mockito.any()); in testEvents()
232 .logAssociation(Mockito.eq("subprocess-module_log1"), Mockito.any()); in testEvents()
235 .logAssociation(Mockito.eq("subprocess-invocation_log1"), Mockito.any()); in testEvents()
391 mFinalTestParser.logAssociation("log-module", logModuleFile); in testEvents_finaleProto()
400 mFinalTestParser.logAssociation("log1", logFile); in testEvents_finaleProto()
[all …]
DStreamProtoResultReporterTest.java106 mReporter.logAssociation( in testStream()
111 mReporter.logAssociation( in testStream()
217 mReporter.logAssociation( in testStream_noInvocationReporting()
222 mReporter.logAssociation( in testStream_noInvocationReporting()
DProtoResultReporterTest.java87 mReporter.logAssociation("log1", new LogFile("path", "url", false, LogDataType.TEXT, 5)); in testFinalizeProto()
91 mReporter.logAssociation( in testFinalizeProto()
93 mReporter.logAssociation( in testFinalizeProto()
/tools/tradefederation/core/javatests/com/android/tradefed/retry/
DResultAggregatorTest.java146 mAggregator.logAssociation("before-module-log", beforeModule); in testForwarding()
151 mAggregator.logAssociation("test1-log", test1Log); in testForwarding()
154 mAggregator.logAssociation("test2-before-log", test2LogBefore); in testForwarding()
156 mAggregator.logAssociation("test2-after-log", test2LogAfter); in testForwarding()
158 mAggregator.logAssociation("test-run1-before-log", testRun1LogBefore); in testForwarding()
160 mAggregator.logAssociation("test-run1-after-log", testRun1LogAfter); in testForwarding()
162 mAggregator.logAssociation("between-attempts", betweenAttemptsLog); in testForwarding()
169 mAggregator.logAssociation("module-log", moduleLog); in testForwarding()
171 mAggregator.logAssociation("before-end", beforeEnd); in testForwarding()
179 inOrder.verify(mDetailedListener).logAssociation("before-module-log", beforeModule); in testForwarding()
[all …]
/tools/tradefederation/core/javatests/com/android/tradefed/invoker/
DShardListenerTest.java135 mShardListener.logAssociation("test-file", new LogFile("path", "url", LogDataType.TEXT)); in testLogWithoutRun()
139 inOrder.verify(mMockListener).logAssociation(Mockito.eq("test-file"), Mockito.any()); in testLogWithoutRun()
143 verify(mMockListener).logAssociation(Mockito.eq("test-file"), Mockito.any()); in testLogWithoutRun()
170 mShardListener.logAssociation("module-log1", moduleLog1); in testBufferAndReplay_withModule()
178 mShardListener.logAssociation("module-log2", moduleLog2); in testBufferAndReplay_withModule()
197 inOrder.verify(mMockListener).logAssociation("module-log1", moduleLog1); in testBufferAndReplay_withModule()
206 inOrder.verify(mMockListener).logAssociation("module-log2", moduleLog2); in testBufferAndReplay_withModule()
230 mShardListener.logAssociation("moduleLog1", moduleLog1); in testBufferAndReplay_withModule_attempts()
235 mShardListener.logAssociation("moduleLog1", moduleLog2); in testBufferAndReplay_withModule_attempts()
261 inOrder.verify(mMockListener).logAssociation("moduleLog1", moduleLog1); in testBufferAndReplay_withModule_attempts()
[all …]
DTestInvocationTest.java1498 .logAssociation(Mockito.contains(CONFIG_LOG_NAME), Mockito.any()); in testInvoke_logFileSaved()
1511 .logAssociation(Mockito.startsWith(LOGCAT_NAME_SETUP), Mockito.any()); in testInvoke_logFileSaved()
1524 .logAssociation(Mockito.startsWith(LOGCAT_NAME_TEST), Mockito.any()); in testInvoke_logFileSaved()
1537 .logAssociation(Mockito.startsWith(LOGCAT_NAME_TEARDOWN), Mockito.any()); in testInvoke_logFileSaved()
1550 .logAssociation(Mockito.eq(TestInvocation.TRADEFED_LOG_NAME), Mockito.any()); in testInvoke_logFileSaved()
/tools/tradefederation/core/src/com/android/tradefed/retry/
DResultAggregator.java174 mDetailedForwarder.logAssociation(assos.getKey(), assos.getValue()); in invocationEnded()
198 mAggregatedForwarder.logAssociation(key, log); in forwardAggregatedInvocationLogs()
353 public void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in ResultAggregator
354 super.logAssociation(dataName, logFile); in logAssociation()
358 mDetailedForwarder.logAssociation(dataName, logFile); in logAssociation()
404 mDetailedForwarder.logAssociation(assos.getKey(), assos.getValue()); in testModuleEnded()
436 mAggregatedForwarder.logAssociation(key, logFile); in testModuleEnded()
452 mAggregatedForwarder.logAssociation(key, log); in testModuleEnded()
502 .logAssociation(logFile.getKey(), logFile.getValue()); in forwardTestResults()
528 listener.logAssociation(key, logFile); in forwardTestRunResults()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DShardListener.java265 public void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in ShardListener
268 mShardMainForwarder.logAssociation(dataName, logFile); in logAssociation()
270 super.logAssociation(dataName, logFile); in logAssociation()
326 ((ILogSaverListener) listener).logAssociation(key, logFile); in forwardLogAssociation()
337 ((ILogSaverListener) listener).logAssociation(logFile.getKey(), logFile.getValue()); in forwardLogAssociation()
DShardMainResultForwarder.java208 public void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in ShardMainResultForwarder
213 ((ILogSaverListener) listener).logAssociation(dataName, logFile); in logAssociation()
/tools/tradefederation/core/src/com/android/tradefed/result/
DLogSaverResultForwarder.java95 ((ILogSaverListener) listener).logAssociation(name, logFile); in logFile()
175 ((ILogSaverListener) listener).logAssociation(dataName, logFile); in testLog()
214 public void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in LogSaverResultForwarder
219 ((ILogSaverListener) listener).logAssociation(dataName, logFile); in logAssociation()
DResultAndLogForwarder.java62 public void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in ResultAndLogForwarder
67 ((ILogSaverListener) listener).logAssociation(dataName, logFile); in logAssociation()
DEventsLoggerListener.java167 public void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in EventsLoggerListener
DLegacySubprocessResultsReporter.java186 public void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in LegacySubprocessResultsReporter
/tools/tradefederation/core/javatests/com/android/tradefed/util/
DSubprocessTestResultsParserTest.java497 String logAssociation = in testParse_logAssociation() local
501 FileUtil.writeToFile(logAssociation, tmp, true); in testParse_logAssociation()
505 .logAssociation(Mockito.eq("subprocess-dataname"), capture.capture()); in testParse_logAssociation()
531 String logAssociation = in testParse_logAssociation_notUploaded() local
535 FileUtil.writeToFile(logAssociation, tmp, true); in testParse_logAssociation_notUploaded()
566 String logAssociation = in testParse_avoidDoubleLog() local
573 FileUtil.writeToFile(logAssociation, tmp, true); in testParse_avoidDoubleLog()
/tools/asuite/atest/bazel/runner/src/com/android/tradefed/testtype/bazel/
DTestListeners.java46 static void logAssociation(ITestInvocationListener listener, String dataName, LogFile logFile) { in logAssociation() method in TestListeners
51 ((ILogSaverListener) listener).logAssociation(dataName, logFile); in logAssociation()
DInvocationLogCollector.java78 public void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in InvocationLogCollector
84 TestListeners.logAssociation(l, dataName, logFile); in logAssociation()
DBazelTestListener.java75 public void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in BazelTestListener
79 TestListeners.logAssociation(delegate(), dataName, logFile); in logAssociation()
DForwardingTestListener.java193 public void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in ForwardingTestListener
194 TestListeners.logAssociation(delegate(), dataName, logFile); in logAssociation()
DLogPathUpdatingListener.java63 public void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in LogPathUpdatingListener
DNullTestListener.java185 public void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in NullTestListener
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/
DModuleListener.java296 public void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in ModuleListener
298 super.logAssociation(dataName, logFile); in logAssociation()
302 ((ILogSaverListener) mMainListener).logAssociation(dataName, logFile); in logAssociation()
/tools/tradefederation/core/src/com/android/tradefed/postprocessor/
DBasePostProcessor.java172 logAssociation(dataName, log); in testLog()
407 public final void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in BasePostProcessor
423 ((ILogSaverListener) mForwarder).logAssociation(dataName, logFile); in logAssociation()
/tools/tradefederation/core/invocation_interfaces/com/android/tradefed/result/
DILogSaverListener.java64 public default void logAssociation(String dataName, LogFile logFile) { in logAssociation() method
/tools/tradefederation/core/src/com/android/tradefed/device/metric/
DBaseDeviceMetricCollector.java605 public final void logAssociation(String dataName, LogFile logFile) { in logAssociation() method in BaseDeviceMetricCollector
607 ((ILogSaverListener) mForwarder).logAssociation(dataName, logFile); in logAssociation()
/tools/tradefederation/core/javatests/com/android/tradefed/postprocessor/
DBasePostProcessorTest.java896 .logAssociation( in testLogsFromPostProcessorsAreForwarded()
922 .logAssociation( in testLogsFromPostProcessorsAreOnlyForwardedWhenNoLogSaverIsSet()
955 .logAssociation( in testLogsFromOutsidePostProcessorsAreForwarded()

12