separating benchmark results by deviceID.

This commit is contained in:
rachytski 2011-02-13 20:04:50 +02:00 committed by Alex Zolotarev
parent 8203289a3b
commit 29ef8ca329

View file

@ -420,7 +420,10 @@ bool InformationDisplay::addBenchmarkInfo(string const & name, m2::RectD const &
info.m_rect = globalRect;
m_benchmarkInfo.push_back(info);
ofstream fout(GetPlatform().WritablePathForFile("benchmark_results.txt").c_str(), ios::app);
string deviceID = GetPlatform().DeviceID();
transform(deviceID.begin(), deviceID.end(), deviceID.begin(), ::tolower);
ofstream fout(GetPlatform().WritablePathForFile(deviceID + "_benchmark_results.txt").c_str(), ios::app);
fout << GetPlatform().DeviceID() << " "
<< VERSION_STRING << " "
<< info.m_name << " "