summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2020-11-25 22:45:14 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2020-11-25 22:45:14 (GMT)
commit87a80acbe7872b9da7d56f7005ffd1b715e87c93 (patch)
treee3432638679088e7795cb0a9a34b244e217367bd /tests
parent51976dcb24d7a65cf2f4d8b05339e5b1093abc38 (diff)
downloadlz4-87a80acbe7872b9da7d56f7005ffd1b715e87c93.zip
lz4-87a80acbe7872b9da7d56f7005ffd1b715e87c93.tar.gz
lz4-87a80acbe7872b9da7d56f7005ffd1b715e87c93.tar.bz2
updated license & header dates
Diffstat (limited to 'tests')
-rw-r--r--tests/checkFrame.c2
-rw-r--r--tests/checkTag.c2
-rw-r--r--tests/datagencli.c2
-rw-r--r--tests/frametest.c2
-rw-r--r--tests/fullbench.c2
-rw-r--r--tests/fuzzer.c2
-rw-r--r--tests/roundTripTest.c2
-rw-r--r--tests/test-lz4-speed.py4
8 files changed, 9 insertions, 9 deletions
diff --git a/tests/checkFrame.c b/tests/checkFrame.c
index f9a1c14..2b50bae 100644
--- a/tests/checkFrame.c
+++ b/tests/checkFrame.c
@@ -1,6 +1,6 @@
/*
checkFrame - verify frame headers
- Copyright (C) Yann Collet 2014-present
+ Copyright (C) Yann Collet 2014-2020
GPL v2 License
diff --git a/tests/checkTag.c b/tests/checkTag.c
index 4a33415..5e5a034 100644
--- a/tests/checkTag.c
+++ b/tests/checkTag.c
@@ -1,6 +1,6 @@
/*
checkTag.c - Version validation tool for LZ4
- Copyright (C) Yann Collet 2018 - present
+ Copyright (C) Yann Collet 2018-2020
GPL v2 License
diff --git a/tests/datagencli.c b/tests/datagencli.c
index c985197..9efe27e 100644
--- a/tests/datagencli.c
+++ b/tests/datagencli.c
@@ -1,7 +1,7 @@
/*
datagencli.c
compressible data command line generator
- Copyright (C) Yann Collet 2012-2016
+ Copyright (C) Yann Collet 2012-2020
GPL v2 License
diff --git a/tests/frametest.c b/tests/frametest.c
index e613cbf..f06d9b7 100644
--- a/tests/frametest.c
+++ b/tests/frametest.c
@@ -1,6 +1,6 @@
/*
frameTest - test tool for lz4frame
- Copyright (C) Yann Collet 2014-2016
+ Copyright (C) Yann Collet 2014-2020
GPL v2 License
diff --git a/tests/fullbench.c b/tests/fullbench.c
index cb9b684..55bf0b7 100644
--- a/tests/fullbench.c
+++ b/tests/fullbench.c
@@ -1,6 +1,6 @@
/*
bench.c - Demo program to benchmark open-source compression algorithm
- Copyright (C) Yann Collet 2012-2016
+ Copyright (C) Yann Collet 2012-2020
GPL v2 License
diff --git a/tests/fuzzer.c b/tests/fuzzer.c
index a824813..03bdf01 100644
--- a/tests/fuzzer.c
+++ b/tests/fuzzer.c
@@ -1,6 +1,6 @@
/*
fuzzer.c - Fuzzer test tool for LZ4
- Copyright (C) Yann Collet 2012-2017
+ Copyright (C) Yann Collet 2012-2020
GPL v2 License
diff --git a/tests/roundTripTest.c b/tests/roundTripTest.c
index 2d34451..9145c42 100644
--- a/tests/roundTripTest.c
+++ b/tests/roundTripTest.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2016-present, Yann Collet, Facebook, Inc.
+ * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under both the BSD-style license (found in the
diff --git a/tests/test-lz4-speed.py b/tests/test-lz4-speed.py
index ca8f010..4a17d93 100644
--- a/tests/test-lz4-speed.py
+++ b/tests/test-lz4-speed.py
@@ -1,7 +1,7 @@
#! /usr/bin/env python3
#
-# Copyright (c) 2016-present, Przemyslaw Skibinski, Yann Collet, Facebook, Inc.
+# Copyright (c) 2016-2020, Przemyslaw Skibinski, Yann Collet, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
@@ -152,7 +152,7 @@ def benchmark_and_compare(branch, commit, last_commit, args, executableName, md5
% (os.getloadavg()[0], args.maxLoadAvg, sleepTime))
time.sleep(sleepTime)
start_load = str(os.getloadavg())
- result = execute('programs/%s -rqi5b1e%s %s' % (executableName, args.lastCLevel, testFilePath), print_output=True)
+ result = execute('programs/%s -rqi5b1e%s %s' % (executableName, args.lastCLevel, testFilePath), print_output=True)
end_load = str(os.getloadavg())
linesExpected = args.lastCLevel + 1
if len(result) != linesExpected: