summaryrefslogtreecommitdiffstats
path: root/tests/Makefile
diff options
context:
space:
mode:
authorYann Collet <Cyan4973@users.noreply.github.com>2018-09-05 21:07:53 (GMT)
committerGitHub <noreply@github.com>2018-09-05 21:07:53 (GMT)
commitdc32009ab1f0a6fca74998f5f3704d269c450aea (patch)
treee3e3bc01eb3e85cef21de88a0d87c80ff4dc81c8 /tests/Makefile
parentc4dbc37b3ce085a05441124fee4a8144dc149b05 (diff)
parent30f6f34328733ec4e74c78c06f667810db0417df (diff)
downloadlz4-dc32009ab1f0a6fca74998f5f3704d269c450aea.zip
lz4-dc32009ab1f0a6fca74998f5f3704d269c450aea.tar.gz
lz4-dc32009ab1f0a6fca74998f5f3704d269c450aea.tar.bz2
Merge pull request #562 from lz4/roundTrip
Round trip test for #560
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 81033b5..bc43234 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -63,7 +63,7 @@ NB_LOOPS ?= -i1
default: all
-all: fullbench fuzzer frametest datagen
+all: fullbench fuzzer frametest roundTripTest datagen
all32: CFLAGS+=-m32
all32: all
@@ -103,6 +103,9 @@ fuzzer : lz4.o lz4hc.o xxhash.o fuzzer.c
frametest: lz4frame.o lz4.o lz4hc.o xxhash.o frametest.c
$(CC) $(FLAGS) $^ -o $@$(EXT)
+roundTripTest : lz4.o lz4hc.o xxhash.o roundTripTest.c
+ $(CC) $(FLAGS) $^ -o $@$(EXT)
+
datagen : $(PRGDIR)/datagen.c datagencli.c
$(CC) $(FLAGS) -I$(PRGDIR) $^ -o $@$(EXT)