1# ################################################################ 2# Copyright (c) 2015-present, Yann Collet, Facebook, Inc. 3# All rights reserved. 4# 5# This source code is licensed under both the BSD-style license (found in the 6# LICENSE file in the root directory of this source tree) and the GPLv2 (found 7# in the COPYING file in the root directory of this source tree). 8# ################################################################ 9# datagen : Synthetic and parametrable data generator, for tests 10# fullbench : Precisely measure speed for each zstd inner functions 11# fullbench32: Same as fullbench, but forced to compile in 32-bits mode 12# fuzzer : Test tool, to check zstd integrity on target platform 13# fuzzer32: Same as fuzzer, but forced to compile in 32-bits mode 14# paramgrill : parameter tester for zstd 15# test-zstd-speed.py : script for testing zstd speed difference between commits 16# versionsTest : compatibility test between zstd versions stored on Github (v0.1+) 17# zstreamtest : Fuzzer test tool for zstd streaming API 18# zstreamtest32: Same as zstreamtest, but forced to compile in 32-bits mode 19# ########################################################################## 20 21ZSTDDIR = ../lib 22PRGDIR = ../programs 23PYTHON ?= python3 24TESTARTEFACT := versionsTest 25 26DEBUGLEVEL ?= 1 27DEBUGFLAGS = -g -DDEBUGLEVEL=$(DEBUGLEVEL) 28CPPFLAGS += -I$(ZSTDDIR) -I$(ZSTDDIR)/common -I$(ZSTDDIR)/compress \ 29 -I$(ZSTDDIR)/dictBuilder -I$(ZSTDDIR)/deprecated -I$(PRGDIR) 30ifeq ($(OS),Windows_NT) # MinGW assumed 31CPPFLAGS += -D__USE_MINGW_ANSI_STDIO # compatibility with %zu formatting 32endif 33CFLAGS ?= -O3 34CFLAGS += -Wall -Wextra -Wcast-qual -Wcast-align -Wshadow \ 35 -Wstrict-aliasing=1 -Wswitch-enum -Wdeclaration-after-statement \ 36 -Wstrict-prototypes -Wundef \ 37 -Wvla -Wformat=2 -Winit-self -Wfloat-equal -Wwrite-strings \ 38 -Wredundant-decls -Wmissing-prototypes 39CFLAGS += $(DEBUGFLAGS) $(MOREFLAGS) 40FLAGS = $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) 41 42 43ZSTDCOMMON_FILES := $(ZSTDDIR)/common/*.c 44ZSTDCOMP_FILES := $(ZSTDDIR)/compress/*.c 45ZSTDDECOMP_FILES := $(ZSTDDIR)/decompress/*.c 46ZSTD_FILES := $(ZSTDDECOMP_FILES) $(ZSTDCOMMON_FILES) $(ZSTDCOMP_FILES) 47ZBUFF_FILES := $(ZSTDDIR)/deprecated/*.c 48ZDICT_FILES := $(ZSTDDIR)/dictBuilder/*.c 49 50ZSTD_F1 := $(wildcard $(ZSTD_FILES)) 51ZSTD_OBJ1 := $(subst $(ZSTDDIR)/common/,zstdm_,$(ZSTD_F1)) 52ZSTD_OBJ2 := $(subst $(ZSTDDIR)/compress/,zstdc_,$(ZSTD_OBJ1)) 53ZSTD_OBJ3 := $(subst $(ZSTDDIR)/decompress/,zstdd_,$(ZSTD_OBJ2)) 54ZSTD_OBJECTS := $(ZSTD_OBJ3:.c=.o) 55 56ZSTDMT_OBJ1 := $(subst $(ZSTDDIR)/common/,zstdmt_m_,$(ZSTD_F1)) 57ZSTDMT_OBJ2 := $(subst $(ZSTDDIR)/compress/,zstdmt_c_,$(ZSTDMT_OBJ1)) 58ZSTDMT_OBJ3 := $(subst $(ZSTDDIR)/decompress/,zstdmt_d_,$(ZSTDMT_OBJ2)) 59ZSTDMT_OBJECTS := $(ZSTDMT_OBJ3:.c=.o) 60 61# Define *.exe as extension for Windows systems 62ifneq (,$(filter Windows%,$(OS))) 63EXT =.exe 64MULTITHREAD_CPP = -DZSTD_MULTITHREAD 65MULTITHREAD_LD = 66else 67EXT = 68MULTITHREAD_CPP = -DZSTD_MULTITHREAD 69MULTITHREAD_LD = -pthread 70endif 71MULTITHREAD = $(MULTITHREAD_CPP) $(MULTITHREAD_LD) 72 73VOID = /dev/null 74ZSTREAM_TESTTIME ?= -T90s 75FUZZERTEST ?= -T200s 76ZSTDRTTEST = --test-large-data 77DECODECORPUS_TESTTIME ?= -T30 78 79.PHONY: default all all32 allnothread dll clean test test32 test-all versionsTest 80 81default: fullbench 82 @echo $(ZSTDMT_OBJECTS) 83 84all: fullbench fuzzer zstreamtest paramgrill datagen decodecorpus roundTripCrash \ 85 fullbench-lib poolTests 86 87all32: fullbench32 fuzzer32 zstreamtest32 88 89allnothread: MULTITHREAD_CPP= 90allnothread: MULTITHREAD_LD= 91allnothread: fullbench fuzzer paramgrill datagen decodecorpus 92 93dll: fuzzer-dll zstreamtest-dll 94 95PHONY: zstd zstd32 zstd-nolegacy # must be phony, only external makefile knows how to build them, or if they need an update 96zstd zstd32 zstd-nolegacy: 97 $(MAKE) -C $(PRGDIR) $@ MOREFLAGS+="$(DEBUGFLAGS)" 98 99gzstd: 100 $(MAKE) -C $(PRGDIR) zstd HAVE_ZLIB=1 MOREFLAGS+="$(DEBUGFLAGS)" 101 102.PHONY: zstd-dll 103zstd-dll : 104 $(MAKE) -C $(ZSTDDIR) libzstd 105 106.PHONY: zstd-staticLib 107zstd-staticLib : 108 $(MAKE) -C $(ZSTDDIR) libzstd.a 109 110zstdm_%.o : $(ZSTDDIR)/common/%.c 111 $(CC) -c $(CPPFLAGS) $(CFLAGS) $< -o $@ 112 113zstdc_%.o : $(ZSTDDIR)/compress/%.c 114 $(CC) -c $(CPPFLAGS) $(CFLAGS) $< -o $@ 115 116zstdd_%.o : $(ZSTDDIR)/decompress/%.c 117 $(CC) -c $(CPPFLAGS) $(CFLAGS) $< -o $@ 118 119zstdmt%.o : CPPFLAGS += $(MULTITHREAD_CPP) 120 121zstdmt_m_%.o : $(ZSTDDIR)/common/%.c 122 $(CC) -c $(CPPFLAGS) $(CFLAGS) $< -o $@ 123 124zstdmt_c_%.o : $(ZSTDDIR)/compress/%.c 125 $(CC) -c $(CPPFLAGS) $(CFLAGS) $< -o $@ 126 127zstdmt_d_%.o : $(ZSTDDIR)/decompress/%.c 128 $(CC) -c $(CPPFLAGS) $(CFLAGS) $< -o $@ 129 130fullbench32: CPPFLAGS += -m32 131fullbench fullbench32 : CPPFLAGS += $(MULTITHREAD_CPP) 132fullbench fullbench32 : LDFLAGS += $(MULTITHREAD_LD) 133fullbench fullbench32 : DEBUGFLAGS = -DNDEBUG # turn off assert() for speed measurements 134fullbench fullbench32 : $(ZSTD_FILES) 135fullbench fullbench32 : $(PRGDIR)/datagen.c $(PRGDIR)/util.c $(PRGDIR)/timefn.c $(PRGDIR)/benchfn.c fullbench.c 136 $(CC) $(FLAGS) $^ -o $@$(EXT) 137 138fullbench-lib : CPPFLAGS += -DXXH_NAMESPACE=ZSTD_ 139fullbench-lib : zstd-staticLib 140fullbench-lib : $(PRGDIR)/datagen.c $(PRGDIR)/util.c $(PRGDIR)/timefn.c $(PRGDIR)/benchfn.c fullbench.c 141 $(CC) $(FLAGS) $(filter %.c,$^) -o $@$(EXT) $(ZSTDDIR)/libzstd.a 142 143# note : broken : requires unavailable symbols 144fullbench-dll : zstd-dll 145fullbench-dll : LDFLAGS+= -L$(ZSTDDIR) -lzstd 146fullbench-dll: $(PRGDIR)/datagen.c $(PRGDIR)/util.c $(PRGDIR)/benchfn.c $(PRGDIR)/timefn.c fullbench.c 147# $(CC) $(FLAGS) $(filter %.c,$^) -o $@$(EXT) -DZSTD_DLL_IMPORT=1 $(ZSTDDIR)/dll/libzstd.dll 148 $(CC) $(FLAGS) $(filter %.c,$^) -o $@$(EXT) 149 150fuzzer : CPPFLAGS += $(MULTITHREAD_CPP) 151fuzzer : LDFLAGS += $(MULTITHREAD_LD) 152fuzzer32: CFLAGS += -m32 153fuzzer : $(ZSTDMT_OBJECTS) 154fuzzer32: $(ZSTD_FILES) 155fuzzer fuzzer32 : $(ZDICT_FILES) $(PRGDIR)/util.c $(PRGDIR)/timefn.c $(PRGDIR)/datagen.c fuzzer.c 156 $(CC) $(FLAGS) $^ -o $@$(EXT) 157 158fuzzer-dll : zstd-dll 159fuzzer-dll : LDFLAGS+= -L$(ZSTDDIR) -lzstd 160fuzzer-dll : $(ZSTDDIR)/common/xxhash.c $(PRGDIR)/util.c $(PRGDIR)/timefn.c $(PRGDIR)/datagen.c fuzzer.c 161 $(CC) $(CPPFLAGS) $(CFLAGS) $(filter %.c,$^) $(LDFLAGS) -o $@$(EXT) 162 163zbufftest : CPPFLAGS += -I$(ZSTDDIR)/deprecated 164zbufftest : CFLAGS += -Wno-deprecated-declarations # required to silence deprecation warnings 165zbufftest : $(ZSTD_OBJECTS) $(ZBUFF_FILES) $(PRGDIR)/util.c $(PRGDIR)/timefn.c $(PRGDIR)/datagen.c zbufftest.c 166 $(CC) $(FLAGS) $^ -o $@$(EXT) 167 168zbufftest32 : CPPFLAGS += -I$(ZSTDDIR)/deprecated 169zbufftest32 : CFLAGS += -Wno-deprecated-declarations -m32 170zbufftest32 : $(ZSTD_FILES) $(ZBUFF_FILES) $(PRGDIR)/util.c $(PRGDIR)/timefn.c $(PRGDIR)/datagen.c zbufftest.c 171 $(CC) $(FLAGS) $^ -o $@$(EXT) 172 173zbufftest-dll : zstd-dll 174zbufftest-dll : CPPFLAGS += -I$(ZSTDDIR)/deprecated 175zbufftest-dll : CFLAGS += -Wno-deprecated-declarations # required to silence deprecation warnings 176zbufftest-dll : LDFLAGS+= -L$(ZSTDDIR) -lzstd 177zbufftest-dll : $(ZSTDDIR)/common/xxhash.c $(PRGDIR)/util.c $(PRGDIR)/timefn.c $(PRGDIR)/datagen.c zbufftest.c 178 $(CC) $(CPPFLAGS) $(CFLAGS) $(filter %.c,$^) $(LDFLAGS) -o $@$(EXT) 179 180ZSTREAM_LOCAL_FILES := $(PRGDIR)/datagen.c $(PRGDIR)/util.c $(PRGDIR)/timefn.c seqgen.c zstreamtest.c 181ZSTREAM_PROPER_FILES := $(ZDICT_FILES) $(ZSTREAM_LOCAL_FILES) 182ZSTREAMFILES := $(ZSTD_FILES) $(ZSTREAM_PROPER_FILES) 183zstreamtest32 : CFLAGS += -m32 184zstreamtest zstreamtest32 : CPPFLAGS += $(MULTITHREAD_CPP) 185zstreamtest zstreamtest32 : LDFLAGS += $(MULTITHREAD_LD) 186zstreamtest : $(ZSTDMT_OBJECTS) $(ZSTREAM_PROPER_FILES) 187zstreamtest32 : $(ZSTREAMFILES) 188zstreamtest zstreamtest32 : 189 $(CC) $(FLAGS) $^ -o $@$(EXT) 190 191zstreamtest_asan : CFLAGS += -fsanitize=address 192zstreamtest_asan : $(ZSTREAMFILES) 193 $(CC) $(FLAGS) $(MULTITHREAD) $^ -o $@$(EXT) 194 195zstreamtest_tsan : CFLAGS += -fsanitize=thread 196zstreamtest_tsan : $(ZSTREAMFILES) 197 $(CC) $(FLAGS) $(MULTITHREAD) $^ -o $@$(EXT) 198 199zstreamtest-dll : zstd-dll 200zstreamtest-dll : LDFLAGS+= -L$(ZSTDDIR) -lzstd 201zstreamtest-dll : $(ZSTDDIR)/common/xxhash.c # xxh symbols not exposed from dll 202zstreamtest-dll : $(ZSTREAM_LOCAL_FILES) 203 $(CC) $(CPPFLAGS) $(CFLAGS) $(filter %.c,$^) $(LDFLAGS) -o $@$(EXT) 204 205paramgrill : DEBUGFLAGS = # turn off assert() by default for speed measurements 206paramgrill : $(ZSTD_FILES) $(PRGDIR)/util.c $(PRGDIR)/timefn.c $(PRGDIR)/benchfn.c $(PRGDIR)/benchzstd.c $(PRGDIR)/datagen.c paramgrill.c 207 $(CC) $(FLAGS) $^ -lm -o $@$(EXT) 208 209datagen : $(PRGDIR)/datagen.c datagencli.c 210 $(CC) $(FLAGS) $^ -o $@$(EXT) 211 212roundTripCrash : $(ZSTD_OBJECTS) roundTripCrash.c 213 $(CC) $(FLAGS) $(MULTITHREAD) $^ -o $@$(EXT) 214 215longmatch : $(ZSTD_OBJECTS) longmatch.c 216 $(CC) $(FLAGS) $^ -o $@$(EXT) 217 218invalidDictionaries : $(ZSTD_OBJECTS) invalidDictionaries.c 219 $(CC) $(FLAGS) $^ -o $@$(EXT) 220 221legacy : CPPFLAGS += -I$(ZSTDDIR)/legacy -DZSTD_LEGACY_SUPPORT=4 222legacy : $(ZSTD_FILES) $(wildcard $(ZSTDDIR)/legacy/*.c) legacy.c 223 $(CC) $(FLAGS) $^ -o $@$(EXT) 224 225decodecorpus : $(filter-out zstdc_zstd_compress.o, $(ZSTD_OBJECTS)) $(ZDICT_FILES) $(PRGDIR)/util.c $(PRGDIR)/timefn.c decodecorpus.c 226 $(CC) $(FLAGS) $^ -o $@$(EXT) -lm 227 228symbols : symbols.c zstd-dll 229ifneq (,$(filter Windows%,$(OS))) 230 cp $(ZSTDDIR)/dll/libzstd.dll . 231 $(CC) $(FLAGS) $< -o $@$(EXT) -DZSTD_DLL_IMPORT=1 libzstd.dll 232else 233 $(CC) $(FLAGS) $< -o $@$(EXT) -Wl,-rpath=$(ZSTDDIR) $(ZSTDDIR)/libzstd.so # broken on Mac 234endif 235 236poolTests : $(PRGDIR)/util.c $(PRGDIR)/timefn.c poolTests.c $(ZSTDDIR)/common/pool.c $(ZSTDDIR)/common/threading.c $(ZSTDDIR)/common/zstd_common.c $(ZSTDDIR)/common/error_private.c 237 $(CC) $(FLAGS) $(MULTITHREAD) $^ -o $@$(EXT) 238 239.PHONY: versionsTest 240versionsTest: clean 241 $(PYTHON) test-zstd-versions.py 242 243checkTag: checkTag.c $(ZSTDDIR)/zstd.h 244 $(CC) $(FLAGS) $< -o $@$(EXT) 245 246clean: 247 $(MAKE) -C $(ZSTDDIR) clean 248 $(MAKE) -C $(PRGDIR) clean 249 @$(RM) -fR $(TESTARTEFACT) 250 @$(RM) -f core *.o tmp* result* *.gcda dictionary *.zst \ 251 $(PRGDIR)/zstd$(EXT) $(PRGDIR)/zstd32$(EXT) \ 252 fullbench$(EXT) fullbench32$(EXT) \ 253 fullbench-lib$(EXT) fullbench-dll$(EXT) \ 254 fuzzer$(EXT) fuzzer32$(EXT) zbufftest$(EXT) zbufftest32$(EXT) \ 255 fuzzer-dll$(EXT) zstreamtest-dll$(EXT) zbufftest-dll$(EXT) \ 256 zstreamtest$(EXT) zstreamtest32$(EXT) \ 257 datagen$(EXT) paramgrill$(EXT) roundTripCrash$(EXT) longmatch$(EXT) \ 258 symbols$(EXT) invalidDictionaries$(EXT) legacy$(EXT) poolTests$(EXT) \ 259 decodecorpus$(EXT) checkTag$(EXT) 260 @echo Cleaning completed 261 262 263#---------------------------------------------------------------------------------- 264#make valgrindTest is validated only for Linux, macOS, BSD, Hurd and Solaris targets 265#---------------------------------------------------------------------------------- 266ifneq (,$(filter $(shell uname),Linux Darwin GNU/kFreeBSD GNU OpenBSD FreeBSD NetBSD DragonFly SunOS)) 267HOST_OS = POSIX 268 269valgrindTest: VALGRIND = valgrind --leak-check=full --show-leak-kinds=all --error-exitcode=1 270valgrindTest: zstd datagen fuzzer fullbench 271 @echo "\n ---- valgrind tests : memory analyzer ----" 272 $(VALGRIND) ./datagen -g50M > $(VOID) 273 $(VALGRIND) $(PRGDIR)/zstd ; if [ $$? -eq 0 ] ; then echo "zstd without argument should have failed"; false; fi 274 ./datagen -g80 | $(VALGRIND) $(PRGDIR)/zstd - -c > $(VOID) 275 ./datagen -g16KB | $(VALGRIND) $(PRGDIR)/zstd -vf - -c > $(VOID) 276 ./datagen -g2930KB | $(VALGRIND) $(PRGDIR)/zstd -5 -vf - -o tmp 277 $(VALGRIND) $(PRGDIR)/zstd -vdf tmp -c > $(VOID) 278 ./datagen -g64MB | $(VALGRIND) $(PRGDIR)/zstd -vf - -c > $(VOID) 279 @rm tmp 280 $(VALGRIND) ./fuzzer -T1mn -t1 281 $(VALGRIND) ./fullbench -i1 282 283endif 284 285 286ifneq (,$(filter MSYS%,$(shell uname))) 287HOST_OS = MSYS 288endif 289 290 291#----------------------------------------------------------------------------- 292# make tests validated only for below targets 293#----------------------------------------------------------------------------- 294ifneq (,$(filter $(HOST_OS),MSYS POSIX)) 295 296DIFF:=diff 297ifneq (,$(filter $(shell uname),SunOS)) 298DIFF:=gdiff 299endif 300 301.PHONY: list 302list: 303 @$(MAKE) -pRrq -f $(lastword $(MAKEFILE_LIST)) : 2>/dev/null | awk -v RS= -F: '/^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print $$1}}' | sort | egrep -v -e '^[^[:alnum:]]' -e '^$@$$' | xargs 304 305.PHONY: shortest 306shortest: ZSTDRTTEST= 307shortest: test-zstd 308 309.PHONY: fuzztest 310fuzztest: test-fuzzer test-zstream test-decodecorpus 311 312.PHONY: test 313test: test-zstd test-fullbench test-fuzzer test-zstream test-invalidDictionaries test-legacy test-decodecorpus 314ifeq ($(QEMU_SYS),) 315test: test-pool 316endif 317 318test32: test-zstd32 test-fullbench32 test-fuzzer32 test-zstream32 319 320test-all: test test32 valgrindTest test-decodecorpus-cli 321 322 323.PHONY: test-zstd test-zstd32 test-zstd-nolegacy test-zstdgrep 324test-zstd: ZSTD = $(PRGDIR)/zstd 325test-zstd: zstd 326 327test-zstd32: ZSTD = $(PRGDIR)/zstd32 328test-zstd32: zstd32 329 330test-zstd-nolegacy: ZSTD = $(PRGDIR)/zstd-nolegacy 331test-zstd-nolegacy: zstd-nolegacy 332 333test-zstd test-zstd32 test-zstd-nolegacy: datagen 334 file $(ZSTD) 335 ZSTD="$(QEMU_SYS) $(ZSTD)" ./playTests.sh $(ZSTDRTTEST) 336 337 338test-gzstd: gzstd 339 $(PRGDIR)/zstd -f README.md test-zstd-speed.py 340 gzip -f README.md test-zstd-speed.py 341 cat README.md.zst test-zstd-speed.py.gz >zstd_gz.zst 342 cat README.md.gz test-zstd-speed.py.zst >gz_zstd.gz 343 $(PRGDIR)/zstd -df README.md.gz -o README2.md 344 $(PRGDIR)/zstd -df README.md.gz test-zstd-speed.py.gz 345 $(PRGDIR)/zstd -df zstd_gz.zst gz_zstd.gz 346 $(DIFF) -q zstd_gz gz_zstd 347 echo Hello World ZSTD | $(PRGDIR)/zstd -c - >hello.zst 348 echo Hello World GZIP | gzip -c - >hello.gz 349 echo Hello World TEXT >hello.txt 350 cat hello.zst hello.gz hello.txt >hello_zst_gz_txt.gz 351 $(PRGDIR)/zstd -dcf hello.* 352 $(PRGDIR)/zstd -dcf - <hello_zst_gz_txt.gz 353 $(RM) *.gz *.zst README2.md gz_zstd zstd_gz hello.txt 354 355test-zstdgrep: gzstd 356 -[ -f /tmp/zstdcat ] || ln -s $(PWD)/$(PRGDIR)/zstd /tmp/zstdcat 357 echo a | $(PRGDIR)/zstd | env ZCAT=/tmp/zstdcat $(PRGDIR)/zstdgrep a 358 echo a | $(PRGDIR)/zstd | env ZCAT=/tmp/zstdcat $(PRGDIR)/zstdgrep b && return 1 || return 0 359 -echo 'hello world' > test.txt && $(PRGDIR)/zstd test.txt 360 env ZCAT=/tmp/zstdcat $(PRGDIR)/zstdgrep hello test.txt.zst 361 env ZCAT=/tmp/zstdcat $(PRGDIR)/zstdgrep weird test.txt.zst && return 1 || return 0 362 363test-fullbench: fullbench datagen 364 $(QEMU_SYS) ./fullbench -i1 365 $(QEMU_SYS) ./fullbench -i1 -P0 366 367test-fullbench32: fullbench32 datagen 368 $(QEMU_SYS) ./fullbench32 -i1 369 $(QEMU_SYS) ./fullbench32 -i1 -P0 370 371test-fuzzer: fuzzer 372 $(QEMU_SYS) ./fuzzer -v $(FUZZERTEST) $(FUZZER_FLAGS) 373 374test-fuzzer-stackmode: MOREFLAGS += -DZSTD_HEAPMODE=0 375test-fuzzer-stackmode: test-fuzzer 376 377test-fuzzer32: fuzzer32 378 $(QEMU_SYS) ./fuzzer32 -v $(FUZZERTEST) $(FUZZER_FLAGS) 379 380test-zbuff: zbufftest 381 $(QEMU_SYS) ./zbufftest $(ZSTREAM_TESTTIME) 382 383test-zbuff32: zbufftest32 384 $(QEMU_SYS) ./zbufftest32 $(ZSTREAM_TESTTIME) 385 386test-zstream: zstreamtest 387 $(QEMU_SYS) ./zstreamtest -v $(ZSTREAM_TESTTIME) $(FUZZER_FLAGS) 388 $(QEMU_SYS) ./zstreamtest --mt -t1 $(ZSTREAM_TESTTIME) $(FUZZER_FLAGS) 389 $(QEMU_SYS) ./zstreamtest --newapi -t1 $(ZSTREAM_TESTTIME) $(FUZZER_FLAGS) 390 391test-zstream32: zstreamtest32 392 $(QEMU_SYS) ./zstreamtest32 $(ZSTREAM_TESTTIME) $(FUZZER_FLAGS) 393 394test-longmatch: longmatch 395 $(QEMU_SYS) ./longmatch 396 397test-invalidDictionaries: invalidDictionaries 398 $(QEMU_SYS) ./invalidDictionaries 399 400test-symbols: symbols 401 $(QEMU_SYS) ./symbols 402 403test-legacy: legacy 404 $(QEMU_SYS) ./legacy 405 406test-decodecorpus: decodecorpus 407 $(QEMU_SYS) ./decodecorpus -t $(DECODECORPUS_TESTTIME) 408 409test-decodecorpus-cli: decodecorpus 410 @echo "\n ---- decodecorpus basic cli tests ----" 411 @mkdir testdir 412 ./decodecorpus -n5 -otestdir -ptestdir 413 @cd testdir && \ 414 $(ZSTD) -d z000000.zst -o tmp0 && \ 415 $(ZSTD) -d z000001.zst -o tmp1 && \ 416 $(ZSTD) -d z000002.zst -o tmp2 && \ 417 $(ZSTD) -d z000003.zst -o tmp3 && \ 418 $(ZSTD) -d z000004.zst -o tmp4 && \ 419 diff z000000 tmp0 && \ 420 diff z000001 tmp1 && \ 421 diff z000002 tmp2 && \ 422 diff z000003 tmp3 && \ 423 diff z000004 tmp4 && \ 424 rm ./* && \ 425 cd .. 426 @echo "\n ---- decodecorpus dictionary cli tests ----" 427 ./decodecorpus -n5 -otestdir -ptestdir --use-dict=1MB 428 @cd testdir && \ 429 $(ZSTD) -d z000000.zst -D dictionary -o tmp0 && \ 430 $(ZSTD) -d z000001.zst -D dictionary -o tmp1 && \ 431 $(ZSTD) -d z000002.zst -D dictionary -o tmp2 && \ 432 $(ZSTD) -d z000003.zst -D dictionary -o tmp3 && \ 433 $(ZSTD) -d z000004.zst -D dictionary -o tmp4 && \ 434 diff z000000 tmp0 && \ 435 diff z000001 tmp1 && \ 436 diff z000002 tmp2 && \ 437 diff z000003 tmp3 && \ 438 diff z000004 tmp4 && \ 439 cd .. 440 @rm -rf testdir 441 442test-pool: poolTests 443 $(QEMU_SYS) ./poolTests 444 445test-lz4: ZSTD = LD_LIBRARY_PATH=/usr/local/lib $(PRGDIR)/zstd 446test-lz4: ZSTD_LZ4 = LD_LIBRARY_PATH=/usr/local/lib ./lz4 447test-lz4: ZSTD_UNLZ4 = LD_LIBRARY_PATH=/usr/local/lib ./unlz4 448test-lz4: zstd decodecorpus datagen 449 [ -f lz4 ] || ln -s $(PRGDIR)/zstd lz4 450 [ -f unlz4 ] || ln -s $(PRGDIR)/zstd unlz4 451 452 ./decodecorpus -ptmp 453 # lz4 -> zstd 454 lz4 < tmp | \ 455 $(ZSTD) -d | \ 456 cmp - tmp 457 lz4 < tmp | \ 458 $(ZSTD_UNLZ4) | \ 459 cmp - tmp 460 # zstd -> lz4 461 $(ZSTD) --format=lz4 < tmp | \ 462 lz4 -d | \ 463 cmp - tmp 464 $(ZSTD_LZ4) < tmp | \ 465 lz4 -d | \ 466 cmp - tmp 467 # zstd -> zstd 468 $(ZSTD) --format=lz4 < tmp | \ 469 $(ZSTD) -d | \ 470 cmp - tmp 471 # zstd -> zstd 472 $(ZSTD) < tmp | \ 473 $(ZSTD) -d | \ 474 cmp - tmp 475 476 ./datagen -g384KB | $(ZSTD) --format=lz4 | $(ZSTD) -d > /dev/null 477 478 rm tmp lz4 unlz4 479 480endif 481