From: Paul Cruz Date: Mon, 10 Jul 2017 18:32:30 +0000 (-0700) Subject: renamed pool.c to poolTests.c X-Git-Tag: v1.3.1^2~28^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F761%2Fhead;p=thirdparty%2Fzstd.git renamed pool.c to poolTests.c --- diff --git a/tests/Makefile b/tests/Makefile index 345e0e8eb..cd89a9405 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -79,7 +79,7 @@ all32: fullbench32 fuzzer32 zstreamtest32 allnothread: fullbench fuzzer paramgrill datagen decodecorpus -dll: fuzzer-dll zstreamtest-dll +dll: fuzzer-dll zstreamtest-dll zstd: $(MAKE) -C $(PRGDIR) $@ @@ -192,7 +192,7 @@ else $(CC) $(FLAGS) $^ -o $@$(EXT) -Wl,-rpath=$(ZSTDDIR) $(ZSTDDIR)/libzstd.so endif -pool : pool.c $(ZSTDDIR)/common/pool.c $(ZSTDDIR)/common/threading.c +poolTests : poolTests.c $(ZSTDDIR)/common/pool.c $(ZSTDDIR)/common/threading.c $(CC) $(FLAGS) $(MULTITHREAD) $^ -o $@$(EXT) namespaceTest: @@ -213,7 +213,7 @@ clean: fuzzer-dll$(EXT) zstreamtest-dll$(EXT) zbufftest-dll$(EXT)\ zstreamtest$(EXT) zstreamtest32$(EXT) \ datagen$(EXT) paramgrill$(EXT) roundTripCrash$(EXT) longmatch$(EXT) \ - symbols$(EXT) invalidDictionaries$(EXT) legacy$(EXT) pool$(EXT) \ + symbols$(EXT) invalidDictionaries$(EXT) legacy$(EXT) poolTests$(EXT) \ decodecorpus$(EXT) @echo Cleaning completed @@ -375,7 +375,7 @@ test-decodecorpus-cli: decodecorpus cd .. @rm -rf testdir -test-pool: pool - $(QEMU_SYS) ./pool +test-pool: poolTests + $(QEMU_SYS) ./poolTests endif diff --git a/tests/pool.c b/tests/poolTests.c similarity index 100% rename from tests/pool.c rename to tests/poolTests.c