diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-06-04 16:54:46 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-06-04 16:54:46 (GMT) |
commit | 945e417faa9c5407bc23d80f6d089b209a051237 (patch) | |
tree | 98975e5e5f7fe01aef39477edbd729f857589cbd /perform | |
parent | 6eb49711cb3e63b1b7d4d1a74934f55629fa83d0 (diff) | |
download | hdf5-945e417faa9c5407bc23d80f6d089b209a051237.zip hdf5-945e417faa9c5407bc23d80f6d089b209a051237.tar.gz hdf5-945e417faa9c5407bc23d80f6d089b209a051237.tar.bz2 |
[svn-r5526] Purpose:
Bug Fix
Description:
Still was calling the POSIX stuff "Raw".
Solution:
Changed name to POSIX instead of Raw...
Platforms tested:
Linux
Diffstat (limited to 'perform')
-rwxr-xr-x | perform/gen_report.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perform/gen_report.pl b/perform/gen_report.pl index b8bbed8..54556fb 100755 --- a/perform/gen_report.pl +++ b/perform/gen_report.pl @@ -138,7 +138,7 @@ sub create_excel_output_string { foreach my $procs (sort { $b <=> $a } keys(%results)) { $output_content .= "\n$procs Procs"; $output_content .= "\n" . create_excel_output_header; - $output_content .= "\n Raw"; + $output_content .= "\n POSIX"; foreach my $xfer (sort { $a <=> $b } keys(%{$results{$procs}})) { $output_content .= "\t$results{$procs}{$xfer}[0]{$t}"; @@ -230,7 +230,7 @@ sub create_ascii_output_string { $output_content .= "\n$procs Procs"; $output_content .= "\n$output_header\n"; $output_content .= "-" x length($output_header); - $output_content .= "\n Raw |"; + $output_content .= "\n POSIX |"; foreach my $xfer (sort { $a <=> $b } keys(%{$results{$procs}})) { $output_content = sprintf("$output_content %-6s |", |