Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/tests
diff options
context:
space:
mode:
authorRobert Adam <krzmbrzl@gmail.com>2021-03-01 20:01:11 +0300
committerRobert Adam <krzmbrzl@gmail.com>2021-03-02 12:15:01 +0300
commit59ae429972c16c377135bcccfee646b7df446933 (patch)
treed4d82f96756f95255970f165195f3fde71273c40 /src/tests
parent86710dab6202794bb14a26aff76e303c99c7dc43 (diff)
MAINT: Update copyright notice to 2021
This was done by running scripts/updateLicenseHeaders.py and then manually editing the LICENSE file.
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/Benchmark.cpp5
-rw-r--r--src/tests/Collections.cpp5
-rw-r--r--src/tests/Emit.cpp5
-rw-r--r--src/tests/Hash.cpp5
-rw-r--r--src/tests/Lock.cpp5
-rw-r--r--src/tests/OverlayTest.cpp5
-rw-r--r--src/tests/ProtoBuf.cpp5
-rw-r--r--src/tests/ProtoBuf.proto5
-rw-r--r--src/tests/Resample.cpp5
-rw-r--r--src/tests/TestCrypt/TestCrypt.cpp2
-rw-r--r--src/tests/TestCryptographicHash/TestCryptographicHash.cpp2
-rw-r--r--src/tests/TestCryptographicRandom/TestCryptographicRandom.cpp2
-rw-r--r--src/tests/TestFFDHE/TestFFDHE.cpp2
-rw-r--r--src/tests/TestLink.cpp5
-rw-r--r--src/tests/TestPacketDataStream/TestPacketDataStream.cpp2
-rw-r--r--src/tests/TestPasswordGenerator/TestPasswordGenerator.cpp2
-rw-r--r--src/tests/TestSSLLocks/TestSSLLocks.cpp2
-rw-r--r--src/tests/TestSelfSignedCertificate/TestSelfSignedCertificate.cpp2
-rw-r--r--src/tests/TestServerAddress/TestServerAddress.cpp2
-rw-r--r--src/tests/TestServerResolver/TestServerResolver.cpp2
-rw-r--r--src/tests/TestStdAbs/TestStdAbs.cpp2
-rw-r--r--src/tests/TestTimer/TestTimer.cpp2
-rw-r--r--src/tests/TestUnresolvedServerAddress/TestUnresolvedServerAddress.cpp2
-rw-r--r--src/tests/TestXMLTools/TestXMLTools.cpp2
24 files changed, 64 insertions, 14 deletions
diff --git a/src/tests/Benchmark.cpp b/src/tests/Benchmark.cpp
index 216d266ea..251923ad4 100644
--- a/src/tests/Benchmark.cpp
+++ b/src/tests/Benchmark.cpp
@@ -1,3 +1,8 @@
+// Copyright 2007-2021 The Mumble Developers. All rights reserved.
+// Use of this source code is governed by a BSD-style license
+// that can be found in the LICENSE file at the root of the
+// Mumble source tree or at <https://www.mumble.info/LICENSE>.
+
/**
* Provided a target address spawns a specified number of senders/speakers,
* UDP-listeners and TCP-listeners.
diff --git a/src/tests/Collections.cpp b/src/tests/Collections.cpp
index 30a5b3930..ef6a5228d 100644
--- a/src/tests/Collections.cpp
+++ b/src/tests/Collections.cpp
@@ -1,3 +1,8 @@
+// Copyright 2009-2021 The Mumble Developers. All rights reserved.
+// Use of this source code is governed by a BSD-style license
+// that can be found in the LICENSE file at the root of the
+// Mumble source tree or at <https://www.mumble.info/LICENSE>.
+
/**
* Benchmark of storage mechanisms; array, vector, Qt collections.
*/
diff --git a/src/tests/Emit.cpp b/src/tests/Emit.cpp
index 81417573c..8250bf6a9 100644
--- a/src/tests/Emit.cpp
+++ b/src/tests/Emit.cpp
@@ -1,3 +1,8 @@
+// Copyright 2009-2021 The Mumble Developers. All rights reserved.
+// Use of this source code is governed by a BSD-style license
+// that can be found in the LICENSE file at the root of the
+// Mumble source tree or at <https://www.mumble.info/LICENSE>.
+
#include "Timer.h"
#include <QtCore>
#include <boost/bind.hpp>
diff --git a/src/tests/Hash.cpp b/src/tests/Hash.cpp
index a82408177..6f4908b04 100644
--- a/src/tests/Hash.cpp
+++ b/src/tests/Hash.cpp
@@ -1,3 +1,8 @@
+// Copyright 2009-2021 The Mumble Developers. All rights reserved.
+// Use of this source code is governed by a BSD-style license
+// that can be found in the LICENSE file at the root of the
+// Mumble source tree or at <https://www.mumble.info/LICENSE>.
+
#include <QtCore>
#include "Timer.h"
diff --git a/src/tests/Lock.cpp b/src/tests/Lock.cpp
index 48edf602b..26897f5cb 100644
--- a/src/tests/Lock.cpp
+++ b/src/tests/Lock.cpp
@@ -1,3 +1,8 @@
+// Copyright 2009-2021 The Mumble Developers. All rights reserved.
+// Use of this source code is governed by a BSD-style license
+// that can be found in the LICENSE file at the root of the
+// Mumble source tree or at <https://www.mumble.info/LICENSE>.
+
/**
* Benchmark of different locking mechanisms; QMutex, PosixMutex, Silly
* (int-flag).
diff --git a/src/tests/OverlayTest.cpp b/src/tests/OverlayTest.cpp
index 56152c6c3..289d91525 100644
--- a/src/tests/OverlayTest.cpp
+++ b/src/tests/OverlayTest.cpp
@@ -1,3 +1,8 @@
+// Copyright 2010-2021 The Mumble Developers. All rights reserved.
+// Use of this source code is governed by a BSD-style license
+// that can be found in the LICENSE file at the root of the
+// Mumble source tree or at <https://www.mumble.info/LICENSE>.
+
/**
* Overlay drawing test application.
*/
diff --git a/src/tests/ProtoBuf.cpp b/src/tests/ProtoBuf.cpp
index faa47081c..efa1cc0c8 100644
--- a/src/tests/ProtoBuf.cpp
+++ b/src/tests/ProtoBuf.cpp
@@ -1,3 +1,8 @@
+// Copyright 2009-2021 The Mumble Developers. All rights reserved.
+// Use of this source code is governed by a BSD-style license
+// that can be found in the LICENSE file at the root of the
+// Mumble source tree or at <https://www.mumble.info/LICENSE>.
+
/**
* Protobuf binding benchmarks (serialisation, deserialization, ...).
*/
diff --git a/src/tests/ProtoBuf.proto b/src/tests/ProtoBuf.proto
index 2a178fc49..2052ab76b 100644
--- a/src/tests/ProtoBuf.proto
+++ b/src/tests/ProtoBuf.proto
@@ -1,3 +1,8 @@
+// Copyright 2009-2021 The Mumble Developers. All rights reserved.
+// Use of this source code is governed by a BSD-style license
+// that can be found in the LICENSE file at the root of the
+// Mumble source tree or at <https://www.mumble.info/LICENSE>.
+
option optimize_for = SPEED;
message Authenticate {
diff --git a/src/tests/Resample.cpp b/src/tests/Resample.cpp
index 909b62554..cb0c72d90 100644
--- a/src/tests/Resample.cpp
+++ b/src/tests/Resample.cpp
@@ -1,3 +1,8 @@
+// Copyright 2009-2021 The Mumble Developers. All rights reserved.
+// Use of this source code is governed by a BSD-style license
+// that can be found in the LICENSE file at the root of the
+// Mumble source tree or at <https://www.mumble.info/LICENSE>.
+
/**
* Speex resampling test / information.
*/
diff --git a/src/tests/TestCrypt/TestCrypt.cpp b/src/tests/TestCrypt/TestCrypt.cpp
index 6954e0ce2..349acc034 100644
--- a/src/tests/TestCrypt/TestCrypt.cpp
+++ b/src/tests/TestCrypt/TestCrypt.cpp
@@ -1,4 +1,4 @@
-// Copyright 2005-2020 The Mumble Developers. All rights reserved.
+// Copyright 2007-2021 The Mumble Developers. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
diff --git a/src/tests/TestCryptographicHash/TestCryptographicHash.cpp b/src/tests/TestCryptographicHash/TestCryptographicHash.cpp
index c1bfce51a..555ba7ed9 100644
--- a/src/tests/TestCryptographicHash/TestCryptographicHash.cpp
+++ b/src/tests/TestCryptographicHash/TestCryptographicHash.cpp
@@ -1,4 +1,4 @@
-// Copyright 2005-2020 The Mumble Developers. All rights reserved.
+// Copyright 2017-2021 The Mumble Developers. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
diff --git a/src/tests/TestCryptographicRandom/TestCryptographicRandom.cpp b/src/tests/TestCryptographicRandom/TestCryptographicRandom.cpp
index 1c6dcd1d7..6183093b8 100644
--- a/src/tests/TestCryptographicRandom/TestCryptographicRandom.cpp
+++ b/src/tests/TestCryptographicRandom/TestCryptographicRandom.cpp
@@ -1,4 +1,4 @@
-// Copyright 2005-2020 The Mumble Developers. All rights reserved.
+// Copyright 2017-2021 The Mumble Developers. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
diff --git a/src/tests/TestFFDHE/TestFFDHE.cpp b/src/tests/TestFFDHE/TestFFDHE.cpp
index 926963ceb..da7f6fa6f 100644
--- a/src/tests/TestFFDHE/TestFFDHE.cpp
+++ b/src/tests/TestFFDHE/TestFFDHE.cpp
@@ -1,4 +1,4 @@
-// Copyright 2005-2020 The Mumble Developers. All rights reserved.
+// Copyright 2017-2021 The Mumble Developers. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
diff --git a/src/tests/TestLink.cpp b/src/tests/TestLink.cpp
index 327f00cb6..10f1f6a28 100644
--- a/src/tests/TestLink.cpp
+++ b/src/tests/TestLink.cpp
@@ -1,3 +1,8 @@
+// Copyright 2008-2021 The Mumble Developers. All rights reserved.
+// Use of this source code is governed by a BSD-style license
+// that can be found in the LICENSE file at the root of the
+// Mumble source tree or at <https://www.mumble.info/LICENSE>.
+
/**
* Test-/Exampleprogram which links against the Mumble link plugin to send
* positional data.
diff --git a/src/tests/TestPacketDataStream/TestPacketDataStream.cpp b/src/tests/TestPacketDataStream/TestPacketDataStream.cpp
index 94ea14ab4..87506309f 100644
--- a/src/tests/TestPacketDataStream/TestPacketDataStream.cpp
+++ b/src/tests/TestPacketDataStream/TestPacketDataStream.cpp
@@ -1,4 +1,4 @@
-// Copyright 2005-2020 The Mumble Developers. All rights reserved.
+// Copyright 2007-2021 The Mumble Developers. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
diff --git a/src/tests/TestPasswordGenerator/TestPasswordGenerator.cpp b/src/tests/TestPasswordGenerator/TestPasswordGenerator.cpp
index 6d7e80291..bc9bd1ed0 100644
--- a/src/tests/TestPasswordGenerator/TestPasswordGenerator.cpp
+++ b/src/tests/TestPasswordGenerator/TestPasswordGenerator.cpp
@@ -1,4 +1,4 @@
-// Copyright 2005-2020 The Mumble Developers. All rights reserved.
+// Copyright 2017-2021 The Mumble Developers. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
diff --git a/src/tests/TestSSLLocks/TestSSLLocks.cpp b/src/tests/TestSSLLocks/TestSSLLocks.cpp
index 4aa430de0..a2c00c8d5 100644
--- a/src/tests/TestSSLLocks/TestSSLLocks.cpp
+++ b/src/tests/TestSSLLocks/TestSSLLocks.cpp
@@ -1,4 +1,4 @@
-// Copyright 2005-2020 The Mumble Developers. All rights reserved.
+// Copyright 2017-2021 The Mumble Developers. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
diff --git a/src/tests/TestSelfSignedCertificate/TestSelfSignedCertificate.cpp b/src/tests/TestSelfSignedCertificate/TestSelfSignedCertificate.cpp
index b65d15f23..8bac45b34 100644
--- a/src/tests/TestSelfSignedCertificate/TestSelfSignedCertificate.cpp
+++ b/src/tests/TestSelfSignedCertificate/TestSelfSignedCertificate.cpp
@@ -1,4 +1,4 @@
-// Copyright 2005-2020 The Mumble Developers. All rights reserved.
+// Copyright 2017-2021 The Mumble Developers. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
diff --git a/src/tests/TestServerAddress/TestServerAddress.cpp b/src/tests/TestServerAddress/TestServerAddress.cpp
index 3fb5656e9..e5e7f78c8 100644
--- a/src/tests/TestServerAddress/TestServerAddress.cpp
+++ b/src/tests/TestServerAddress/TestServerAddress.cpp
@@ -1,4 +1,4 @@
-// Copyright 2005-2020 The Mumble Developers. All rights reserved.
+// Copyright 2017-2021 The Mumble Developers. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
diff --git a/src/tests/TestServerResolver/TestServerResolver.cpp b/src/tests/TestServerResolver/TestServerResolver.cpp
index d13619860..464ff5b35 100644
--- a/src/tests/TestServerResolver/TestServerResolver.cpp
+++ b/src/tests/TestServerResolver/TestServerResolver.cpp
@@ -1,4 +1,4 @@
-// Copyright 2005-2020 The Mumble Developers. All rights reserved.
+// Copyright 2017-2021 The Mumble Developers. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
diff --git a/src/tests/TestStdAbs/TestStdAbs.cpp b/src/tests/TestStdAbs/TestStdAbs.cpp
index 1f572c3eb..378045d88 100644
--- a/src/tests/TestStdAbs/TestStdAbs.cpp
+++ b/src/tests/TestStdAbs/TestStdAbs.cpp
@@ -1,4 +1,4 @@
-// Copyright 2005-2020 The Mumble Developers. All rights reserved.
+// Copyright 2017-2021 The Mumble Developers. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
diff --git a/src/tests/TestTimer/TestTimer.cpp b/src/tests/TestTimer/TestTimer.cpp
index 08dfb984f..848fb03a1 100644
--- a/src/tests/TestTimer/TestTimer.cpp
+++ b/src/tests/TestTimer/TestTimer.cpp
@@ -1,4 +1,4 @@
-// Copyright 2005-2020 The Mumble Developers. All rights reserved.
+// Copyright 2007-2021 The Mumble Developers. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
diff --git a/src/tests/TestUnresolvedServerAddress/TestUnresolvedServerAddress.cpp b/src/tests/TestUnresolvedServerAddress/TestUnresolvedServerAddress.cpp
index 4ec0540c8..e3db7a06f 100644
--- a/src/tests/TestUnresolvedServerAddress/TestUnresolvedServerAddress.cpp
+++ b/src/tests/TestUnresolvedServerAddress/TestUnresolvedServerAddress.cpp
@@ -1,4 +1,4 @@
-// Copyright 2005-2020 The Mumble Developers. All rights reserved.
+// Copyright 2017-2021 The Mumble Developers. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
diff --git a/src/tests/TestXMLTools/TestXMLTools.cpp b/src/tests/TestXMLTools/TestXMLTools.cpp
index 535cae0a7..de4e8b588 100644
--- a/src/tests/TestXMLTools/TestXMLTools.cpp
+++ b/src/tests/TestXMLTools/TestXMLTools.cpp
@@ -1,4 +1,4 @@
-// Copyright 2005-2020 The Mumble Developers. All rights reserved.
+// Copyright 2017-2021 The Mumble Developers. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.