zstd/tests/gzip/Makefile

45 lines
1.5 KiB
Makefile
Raw Normal View History

2017-02-24 07:09:17 -08:00
# ################################################################
# Copyright (c) 2017-present, Facebook, Inc.
2017-02-24 07:09:17 -08:00
# All rights reserved.
#
# This source code is licensed under both the BSD-style license (found in the
# LICENSE file in the root directory of this source tree) and the GPLv2 (found
# in the COPYING file in the root directory of this source tree).
2017-02-24 07:09:17 -08:00
# ################################################################
PRGDIR = ../../programs
VOID = /dev/null
2017-02-27 13:01:03 -08:00
export PATH := .:$(PATH)
2017-02-24 07:09:17 -08:00
.PHONY: all
#all: test-gzip-env
2017-02-28 00:41:23 -08:00
all: test-helin-segv test-hufts test-keep test-list test-memcpy-abuse test-mixed
all: test-null-suffix-clobber test-stdin test-trailing-nul test-unpack-invalid
all: test-zdiff test-zgrep-context test-zgrep-f test-zgrep-signal test-znew-k test-z-suffix
2017-02-24 07:09:17 -08:00
@echo Testing completed
.PHONY: zstd
zstd:
$(MAKE) -C $(PRGDIR) zstd
2017-02-27 13:01:03 -08:00
ln -sf $(PRGDIR)/zstd gzip
@echo PATH=$(PATH)
2017-02-24 07:09:17 -08:00
gzip --version
.PHONY: clean
clean:
@$(MAKE) -C $(PRGDIR) $@ > $(VOID)
@$(RM) *.trs *.log
@echo Cleaning completed
#------------------------------------------------------------------------------
2018-06-09 12:31:17 -07:00
# validated only for Linux, macOS, Hurd and some BSD targets
2017-02-24 07:09:17 -08:00
#------------------------------------------------------------------------------
ifneq (,$(filter $(shell uname),Linux Darwin GNU/kFreeBSD GNU FreeBSD DragonFly NetBSD))
test-%: zstd
2017-02-28 00:41:23 -08:00
@./test-driver.sh --test-name $* --log-file $*.log --trs-file $*.trs --expect-failure "no" --color-tests "yes" --enable-hard-errors "yes" ./$*.sh
2017-02-27 13:01:03 -08:00
# || echo ignoring error
2017-02-24 07:09:17 -08:00
endif