From 485480ba321aa549d4d4b128621a17cf02edcf6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joni=20R=C3=A4s=C3=A4nen?= Date: Mon, 22 Nov 2021 16:53:08 +0200 Subject: [PATCH] Add file size and frame count to result CSV file --- parse.pl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/parse.pl b/parse.pl index a92e3db..2e13e94 100755 --- a/parse.pl +++ b/parse.pl @@ -277,8 +277,11 @@ sub parse_csv { } + my $frame_count = get_frame_count($lib); + my $filesize_in_units = convert_bytes_to_unit($filesize, $unit); + # print the thread number on first line on the file - print $output_file "$threads_of_result threads;\n"; + print $output_file "$threads_of_result threads;; File size ($unit); $filesize_in_units; Frame count; $frame_count;\n"; $previous_threads = $threads_of_result; # reset variable values