]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
Don't run test-pool with QEMU 545/head
authorNick Terrell <terrelln@fb.com>
Tue, 14 Feb 2017 18:08:14 +0000 (10:08 -0800)
committerNick Terrell <terrelln@fb.com>
Tue, 14 Feb 2017 18:08:18 +0000 (10:08 -0800)
    > make test -n
    ...
    ./pool
    > make test -n QEMU_SYS=valgrind
    ...
    ./legacy
    # ./pool not run

tests/Makefile

index f64be1695b4936f93c7694d9b5a8a835344ecd48..2b58c949c1c80b5d100f309e0c193c2a977fcf8a 100644 (file)
@@ -231,7 +231,7 @@ zstd-playTests: datagen
        ZSTD="$(QEMU_SYS) $(ZSTD)" ./playTests.sh $(ZSTDRTTEST)
 
 test: test-zstd test-fullbench test-fuzzer test-zstream test-invalidDictionaries test-legacy
-ifneq ($(QEMU_SYS),qemu-ppc64-static)
+ifeq ($(QEMU_SYS),)
 test: test-pool
 endif