]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
renamed pool.c to poolTests.c 761/head
authorPaul Cruz <paulcruz74@fb.com>
Mon, 10 Jul 2017 18:32:30 +0000 (11:32 -0700)
committerPaul Cruz <paulcruz74@fb.com>
Mon, 10 Jul 2017 18:32:30 +0000 (11:32 -0700)
tests/Makefile
tests/poolTests.c [moved from tests/pool.c with 100% similarity]

index 345e0e8eb3beaf4905653c43b9f3030d87db29a5..cd89a9405aeee86fb8aab1b3b77ccf9b058bf1a7 100644 (file)
@@ -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
similarity index 100%
rename from tests/pool.c
rename to tests/poolTests.c