Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add new test conf keys found when merging timings files
  • Loading branch information
Geoffrey Broadwell committed Aug 8, 2014
1 parent a2f6856 commit 87e809d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions analyze
Expand Up @@ -150,6 +150,11 @@ sub merge_timing_files {
best => {},
};

# Merge in any new configuration keys
for my $key (keys %{$test->{conf}}) {
$merged->{conf}{$key} //= $test->{conf}{$key};
}

for my $compiler (keys %{$test->{best}}) {
my $key = "$compiler/$basename";
$merged->{$_}{$key} = $test->{$_}{$compiler} for qw( raw best );
Expand Down

0 comments on commit 87e809d

Please sign in to comment.