mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-04-18 01:39:03 +02:00
[svn r367] In web dstress statistics, write change lists sorted by filename.
This commit is contained in:
@@ -546,8 +546,9 @@ void generateChangeStatistics(char[] file1, char[] file2, ref Log[char[]] logs)
|
||||
|
||||
BufferedFile targetFile;
|
||||
|
||||
foreach(Test t; newLog.tests.values){
|
||||
Test* oldT = t.file in oldLog.tests;
|
||||
foreach(file; newLog.tests.keys.sort){
|
||||
Test* t = file in newLog.tests;
|
||||
Test* oldT = file in oldLog.tests;
|
||||
|
||||
if(oldT !is null){
|
||||
if(oldT.r == t.r)
|
||||
|
||||
Reference in New Issue
Block a user