]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
minor : specify compression level in tags
authorYann Collet <cyan@fb.com>
Thu, 29 Jun 2017 18:30:31 +0000 (11:30 -0700)
committerYann Collet <cyan@fb.com>
Thu, 29 Jun 2017 18:30:31 +0000 (11:30 -0700)
tests/fullbench.c

index 2cdad2e38b10159bd7ce0d344741ee852a4a8465..251d3ece4d659eb6bea0b173c6c3b9951ac53aca 100644 (file)
@@ -236,14 +236,14 @@ static size_t benchMem(const void* src, size_t srcSize, U32 benchNb)
     switch(benchNb)
     {
     case 1:
-        benchFunction = local_ZSTD_compress; benchName = "ZSTD_compress";
+        benchFunction = local_ZSTD_compress; benchName = "ZSTD_compress(1)";
         break;
     case 2:
         benchFunction = local_ZSTD_decompress; benchName = "ZSTD_decompress";
         break;
 #ifndef ZSTD_DLL_IMPORT
     case 11:
-        benchFunction = local_ZSTD_compressContinue; benchName = "ZSTD_compressContinue";
+        benchFunction = local_ZSTD_compressContinue; benchName = "ZSTD_compressContinue(1)";
         break;
     case 12:
         benchFunction = local_ZSTD_compressContinue_extDict; benchName = "ZSTD_compressContinue_extDict";
@@ -259,7 +259,7 @@ static size_t benchMem(const void* src, size_t srcSize, U32 benchNb)
         break;
 #endif
     case 41:
-        benchFunction = local_ZSTD_compressStream; benchName = "ZSTD_compressStream";
+        benchFunction = local_ZSTD_compressStream; benchName = "ZSTD_compressStream(1)";
         break;
     case 42:
         benchFunction = local_ZSTD_decompressStream; benchName = "ZSTD_decompressStream";