HomeSort by relevance Sort by last modified time
    Searched refs:BatchResult (Results 1 - 9 of 9) sorted by null

  /external/deqp/executor/
xeBatchResult.cpp 74 // BatchResult
76 BatchResult::BatchResult (void)
80 BatchResult::~BatchResult (void)
84 bool BatchResult::hasTestCaseResult (const char* casePath) const
89 ConstTestCaseResultPtr BatchResult::getTestCaseResult (const char* casePath) const
96 TestCaseResultPtr BatchResult::getTestCaseResult (const char* casePath)
103 TestCaseResultPtr BatchResult::createTestCaseResult (const char* casePath)
xeTestLogWriter.hpp 40 void writeTestLog (const BatchResult& batchResult, std::ostream& stream);
41 void writeBatchResultToFile (const BatchResult& batchResult, const char* filename);
xeBatchResult.hpp 102 class BatchResult
105 BatchResult (void);
106 ~BatchResult (void);
122 BatchResult (const BatchResult& other);
123 BatchResult& operator= (const BatchResult& other);
xeBatchExecutor.hpp 54 BatchExecutorLogHandler (BatchResult* batchResult);
64 BatchResult* m_batchResult;
70 BatchExecutor (const TargetConfiguration& config, CommLink* commLink, const TestNode* root, const TestSet& testSet, BatchResult* batchResult, InfoLog* infoLog);
114 BatchResult* m_batchResult;
xeBatchExecutor.cpp 44 static inline bool isExecutedInBatch (const BatchResult* batchResult, const TestCase* testCase)
49 if (batchResult->hasTestCaseResult(fullPath.c_str()))
51 ConstTestCaseResultPtr data = batchResult->getTestCaseResult(fullPath.c_str());
60 static void computeExecuteSet (TestSet& executeSet, const TestNode* root, const TestSet& testSet, const BatchResult* batchResult)
73 if (!isExecutedInBatch(batchResult, testCase))
98 static int removeExecuted (TestSet& set, const TestNode* root, const BatchResult* batchResult)
113 if (isExecutedInBatch(batchResult, testCase)
    [all...]
xeTestLogWriter.cpp 111 void writeTestLog (const BatchResult& result, std::ostream& stream)
126 void writeBatchResultToFile (const BatchResult& result, const char* filename)
  /external/deqp/executor/tools/
xeMergeTestLogs.cpp 64 LogHandler (xe::BatchResult* batchResult, deUint32 flags)
65 : m_batchResult (batchResult)
119 xe::BatchResult* const m_batchResult;
123 static void readLogFile (xe::BatchResult* dstResult, const char* filename, deUint32 flags)
150 xe::BatchResult batchResult;
153 readLogFile(&batchResult, filename->c_str(), cmdLine.flags);
156 xe::writeBatchResultToFile(batchResult, cmdLine.dstFilename.c_str());
158 xe::writeTestLog(batchResult, std::cout)
    [all...]
xeCommandLineExecutor.cpp 356 BatchResultHandler (xe::BatchResult* batchResult)
357 : m_batchResult(batchResult)
384 xe::BatchResult* m_batchResult;
387 void readLogFile (xe::BatchResult* batchResult, const char* filename)
390 BatchResultHandler handler (batchResult);
409 void printBatchResultSummary (const xe::TestNode* root, const xe::TestSet& testSet, const xe::BatchResult& batchResult)
425 if (batchResult.hasTestCaseResult(fullPath.c_str())
    [all...]
  /external/deqp/scripts/
run_nightly.py 114 class BatchResult:
133 batchResult = BatchResult(batchResultName if batchResultName != None else os.path.basename(filename))
134 batchResult.results = readTestCaseResultsFromCSV(filename)
135 return batchResult
160 for batchResult in batchResults:
161 for result in batchResult.results:
170 def genResultMap (batchResult):
172 for result in batchResult.results:
218 for batchResult in batchResults
    [all...]

Completed in 85 milliseconds