From 378485b097fd7b80a5e404a3cb912f7b18f78cdb Mon Sep 17 00:00:00 2001 From: Eugene Kliuchnikov Date: Thu, 16 Jun 2016 10:52:57 +0200 Subject: Update build system. Now libraries are produced as build artifacts. There are currently 3 ways to build: * Easy: `./configure; make` * Simple: use Bazel * Portable: use premake5 to generate XCode / MSVS projects --- tests/Makefile | 4 +--- tests/compatibility_test.sh | 2 +- tests/roundtrip_test.sh | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) (limited to 'tests') diff --git a/tests/Makefile b/tests/Makefile index 8b2eedb..7962cbd 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,7 +1,5 @@ #brotli/tests -include ../shared.mk - BROTLI = .. all: test @@ -11,7 +9,7 @@ test: deps ./roundtrip_test.sh deps : - $(MAKE) -C $(BROTLI)/tools + $(MAKE) -C $(BROTLI) bro clean : rm -f testdata/*.{bro,unbro,uncompressed} diff --git a/tests/compatibility_test.sh b/tests/compatibility_test.sh index e907485..6085ff7 100755 --- a/tests/compatibility_test.sh +++ b/tests/compatibility_test.sh @@ -5,7 +5,7 @@ set -o errexit -BRO=../tools/bro +BRO=../bin/bro for file in testdata/*.compressed*; do echo "Testing decompression of file $file" diff --git a/tests/roundtrip_test.sh b/tests/roundtrip_test.sh index 6bda135..bfd9885 100755 --- a/tests/roundtrip_test.sh +++ b/tests/roundtrip_test.sh @@ -4,7 +4,7 @@ set -o errexit -BRO=../tools/bro +BRO=../bin/bro INPUTS=""" testdata/alice29.txt testdata/asyoulik.txt -- cgit v1.1