mirror of
https://github.com/intel/isa-l.git
synced 2024-12-13 09:52:56 +01:00
igzip: Fix perf test to only open dictionary if specified
Change-Id: Idf5048589af5b61da5ccccf25c575dfc05ea15ec Signed-off-by: Greg Tucker <greg.b.tucker@intel.com>
This commit is contained in:
parent
daa6fd05b4
commit
48d74d6e51
@ -137,9 +137,7 @@ int main(int argc, char *argv[])
|
||||
|
||||
outbuf_size = 2 * infile_size + BUF_SIZE;
|
||||
|
||||
dictfile_size = 0;
|
||||
if (dict_file_name != NULL)
|
||||
dictfile_size = get_filesize(dict);
|
||||
dictfile_size = (dict_file_name != NULL) ? get_filesize(dict) : 0;
|
||||
|
||||
if (iterations == 0) {
|
||||
iterations = infile_size ? RUN_MEM_SIZE / infile_size : MIN_TEST_LOOPS;
|
||||
@ -177,6 +175,7 @@ int main(int argc, char *argv[])
|
||||
inbuf_size = inbuf_size ? inbuf_size : infile_size;
|
||||
|
||||
printf("igzip_file_perf: %s %d iterations\n", in_file_name, iterations);
|
||||
|
||||
/* Read complete input file into buffer */
|
||||
stream.avail_in = (uint32_t) fread(inbuf, 1, infile_size, in);
|
||||
if (stream.avail_in != infile_size) {
|
||||
@ -184,7 +183,8 @@ int main(int argc, char *argv[])
|
||||
exit(0);
|
||||
}
|
||||
|
||||
if (dictfile_size != (uint32_t) fread(dictbuf, 1, dictfile_size, dict)) {
|
||||
/* Read complete dictionary into buffer */
|
||||
if ((dictfile_size != 0) && (dictfile_size != fread(dictbuf, 1, dictfile_size, dict))) {
|
||||
fprintf(stderr, "Couldn't fit all of dictionary file into buffer\n");
|
||||
exit(0);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user