summaryrefslogtreecommitdiffstats
path: root/test/w3c/analyze_tests.pl
diff options
context:
space:
mode:
Diffstat (limited to 'test/w3c/analyze_tests.pl')
-rwxr-xr-xtest/w3c/analyze_tests.pl12
1 files changed, 8 insertions, 4 deletions
diff --git a/test/w3c/analyze_tests.pl b/test/w3c/analyze_tests.pl
index edc53da..2525008 100755
--- a/test/w3c/analyze_tests.pl
+++ b/test/w3c/analyze_tests.pl
@@ -87,14 +87,18 @@ while ($block = <FILE>) {
if ($block =~
/
Approximate\sComplexity:\s(\d+)\n
+ Approximate\sActive\sComplexity:\s(\d+)\n
Actual\sComplexity:\s(\d+)\n
+ Actual\sActive\sComplexity:\s(\d+)\n
Internal\sQueue:\s(\d+)\n
External\sQueue:\s(\d+)\n
/x ) {
- $test->{$currTest}->{'flat'}->{'apprComplexity'} = $1;
- $test->{$currTest}->{'flat'}->{'actualComplexity'} = $2;
- $test->{$currTest}->{'flat'}->{'internalQueue'} = $3;
- $test->{$currTest}->{'flat'}->{'externalQueue'} = $4;
+ $test->{$currTest}->{'flat'}->{'cmplx'}->{'appr'} = $1;
+ $test->{$currTest}->{'flat'}->{'cmplx'}->{'apprActv'} = $2;
+ $test->{$currTest}->{'flat'}->{'cmplx'}->{'actual'} = $3;
+ $test->{$currTest}->{'flat'}->{'cmplx'}->{'actualActv'} = $4;
+ $test->{$currTest}->{'flat'}->{'queue'}->{'internal'} = $5;
+ $test->{$currTest}->{'flat'}->{'queue'}->{'external'} = $6;
if ($block =~ /State-vector (\d+) byte, depth reached (\d+), errors: (\d+)/) {
$test->{$currTest}->{'pml'}->{'states'}->{'stateSize'} = $1;