From f145fbda1f74fbbd6b4c1d2b84ec16cab9436eee Mon Sep 17 00:00:00 2001 From: cxl Date: Wed, 3 Aug 2016 07:05:24 +0000 Subject: [PATCH] .autotest git-svn-id: svn://ultimatepp.org/upp/trunk@10139 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- autotest/ZstdTest/ZstdTest.cpp | 4 ++-- autotest/lz4test/lz4test.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/autotest/ZstdTest/ZstdTest.cpp b/autotest/ZstdTest/ZstdTest.cpp index 83d654b21..7bb41aa74 100644 --- a/autotest/ZstdTest/ZstdTest.cpp +++ b/autotest/ZstdTest/ZstdTest.cpp @@ -57,7 +57,7 @@ CONSOLE_APP_MAIN FileIn in(file); FileOut out(zstd); ZstdCompressStream zstd(out); - zstd.Concurrent(concurrent); + zstd.Co(concurrent); int ch = 0; for(;;) { String data = in.Get(smll ? (++ch & 511) + 1 : 1024*1024); @@ -74,7 +74,7 @@ CONSOLE_APP_MAIN FileIn in(zstd); FileOut out(dec); ZstdDecompressStream zstd(in); - zstd.Concurrent(concurrent); + zstd.Co(concurrent); int ch = 0; for(;;) { String data = zstd.Get(smll ? (++ch & 511) + 1 : 1024*1024); diff --git a/autotest/lz4test/lz4test.cpp b/autotest/lz4test/lz4test.cpp index 705be4a3a..a8d336860 100644 --- a/autotest/lz4test/lz4test.cpp +++ b/autotest/lz4test/lz4test.cpp @@ -57,7 +57,7 @@ CONSOLE_APP_MAIN FileIn in(file); FileOut out(lz4); LZ4CompressStream lz4(out); - lz4.Concurrent(concurrent); + lz4.Co(concurrent); int ch = 0; for(;;) { String data = in.Get(smll ? (++ch & 511) + 1 : 1024*1024); @@ -72,7 +72,7 @@ CONSOLE_APP_MAIN FileIn in(lz4); FileOut out(dec); LZ4DecompressStream lz4(in); - lz4.Concurrent(concurrent); + lz4.Co(concurrent); int ch = 0; for(;;) { String data = lz4.Get(smll ? (++ch & 511) + 1 : 1024*1024);