aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/coro
diff options
context:
space:
mode:
Diffstat (limited to 'vespalib/src/tests/coro')
-rw-r--r--vespalib/src/tests/coro/active_work/CMakeLists.txt2
-rw-r--r--vespalib/src/tests/coro/active_work/active_work_test.cpp2
-rw-r--r--vespalib/src/tests/coro/async_io/CMakeLists.txt2
-rw-r--r--vespalib/src/tests/coro/async_io/async_io_test.cpp2
-rw-r--r--vespalib/src/tests/coro/detached/CMakeLists.txt2
-rw-r--r--vespalib/src/tests/coro/detached/detached_test.cpp2
-rw-r--r--vespalib/src/tests/coro/generator/CMakeLists.txt2
-rw-r--r--vespalib/src/tests/coro/generator/generator_bench.cpp2
-rw-r--r--vespalib/src/tests/coro/generator/generator_test.cpp2
-rw-r--r--vespalib/src/tests/coro/generator/hidden_sequence.cpp2
-rw-r--r--vespalib/src/tests/coro/generator/hidden_sequence.h2
-rw-r--r--vespalib/src/tests/coro/lazy/CMakeLists.txt2
-rw-r--r--vespalib/src/tests/coro/lazy/lazy_test.cpp2
-rw-r--r--vespalib/src/tests/coro/received/CMakeLists.txt2
-rw-r--r--vespalib/src/tests/coro/received/received_test.cpp2
-rw-r--r--vespalib/src/tests/coro/waiting_for/CMakeLists.txt2
-rw-r--r--vespalib/src/tests/coro/waiting_for/waiting_for_test.cpp2
17 files changed, 17 insertions, 17 deletions
diff --git a/vespalib/src/tests/coro/active_work/CMakeLists.txt b/vespalib/src/tests/coro/active_work/CMakeLists.txt
index b230e10dbc7..a1c4e313794 100644
--- a/vespalib/src/tests/coro/active_work/CMakeLists.txt
+++ b/vespalib/src/tests/coro/active_work/CMakeLists.txt
@@ -1,4 +1,4 @@
-# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
vespa_add_executable(vespalib_active_work_test_app TEST
SOURCES
active_work_test.cpp
diff --git a/vespalib/src/tests/coro/active_work/active_work_test.cpp b/vespalib/src/tests/coro/active_work/active_work_test.cpp
index 6404705fff5..58599ef7f9a 100644
--- a/vespalib/src/tests/coro/active_work/active_work_test.cpp
+++ b/vespalib/src/tests/coro/active_work/active_work_test.cpp
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/vespalib/coro/lazy.h>
#include <vespa/vespalib/coro/schedule.h>
diff --git a/vespalib/src/tests/coro/async_io/CMakeLists.txt b/vespalib/src/tests/coro/async_io/CMakeLists.txt
index 25274198e9a..ddccd54995b 100644
--- a/vespalib/src/tests/coro/async_io/CMakeLists.txt
+++ b/vespalib/src/tests/coro/async_io/CMakeLists.txt
@@ -1,4 +1,4 @@
-# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
vespa_add_executable(vespalib_async_io_test_app TEST
SOURCES
async_io_test.cpp
diff --git a/vespalib/src/tests/coro/async_io/async_io_test.cpp b/vespalib/src/tests/coro/async_io/async_io_test.cpp
index f20dde8b22c..bb8d6a25335 100644
--- a/vespalib/src/tests/coro/async_io/async_io_test.cpp
+++ b/vespalib/src/tests/coro/async_io/async_io_test.cpp
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/vespalib/coro/lazy.h>
#include <vespa/vespalib/coro/detached.h>
diff --git a/vespalib/src/tests/coro/detached/CMakeLists.txt b/vespalib/src/tests/coro/detached/CMakeLists.txt
index 237b8615fec..f755967b54a 100644
--- a/vespalib/src/tests/coro/detached/CMakeLists.txt
+++ b/vespalib/src/tests/coro/detached/CMakeLists.txt
@@ -1,4 +1,4 @@
-# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
vespa_add_executable(vespalib_detached_test_app TEST
SOURCES
detached_test.cpp
diff --git a/vespalib/src/tests/coro/detached/detached_test.cpp b/vespalib/src/tests/coro/detached/detached_test.cpp
index f23d16cc75c..e8f19f467bb 100644
--- a/vespalib/src/tests/coro/detached/detached_test.cpp
+++ b/vespalib/src/tests/coro/detached/detached_test.cpp
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/vespalib/coro/detached.h>
#include <vespa/vespalib/gtest/gtest.h>
diff --git a/vespalib/src/tests/coro/generator/CMakeLists.txt b/vespalib/src/tests/coro/generator/CMakeLists.txt
index d2c8ec9b857..f10d8d8b11f 100644
--- a/vespalib/src/tests/coro/generator/CMakeLists.txt
+++ b/vespalib/src/tests/coro/generator/CMakeLists.txt
@@ -1,4 +1,4 @@
-# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
vespa_add_executable(vespalib_generator_test_app TEST
SOURCES
generator_test.cpp
diff --git a/vespalib/src/tests/coro/generator/generator_bench.cpp b/vespalib/src/tests/coro/generator/generator_bench.cpp
index 4fa9c6186f5..7adf46999b6 100644
--- a/vespalib/src/tests/coro/generator/generator_bench.cpp
+++ b/vespalib/src/tests/coro/generator/generator_bench.cpp
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include "hidden_sequence.h"
#include <vespa/vespalib/coro/generator.h>
diff --git a/vespalib/src/tests/coro/generator/generator_test.cpp b/vespalib/src/tests/coro/generator/generator_test.cpp
index 28e26329b13..87880d12c6d 100644
--- a/vespalib/src/tests/coro/generator/generator_test.cpp
+++ b/vespalib/src/tests/coro/generator/generator_test.cpp
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/vespalib/coro/lazy.h>
#include <vespa/vespalib/coro/generator.h>
diff --git a/vespalib/src/tests/coro/generator/hidden_sequence.cpp b/vespalib/src/tests/coro/generator/hidden_sequence.cpp
index 39eedb4623c..517d4ac49d3 100644
--- a/vespalib/src/tests/coro/generator/hidden_sequence.cpp
+++ b/vespalib/src/tests/coro/generator/hidden_sequence.cpp
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include "hidden_sequence.h"
diff --git a/vespalib/src/tests/coro/generator/hidden_sequence.h b/vespalib/src/tests/coro/generator/hidden_sequence.h
index 917b50b1129..93c5aa1cafb 100644
--- a/vespalib/src/tests/coro/generator/hidden_sequence.h
+++ b/vespalib/src/tests/coro/generator/hidden_sequence.h
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once
diff --git a/vespalib/src/tests/coro/lazy/CMakeLists.txt b/vespalib/src/tests/coro/lazy/CMakeLists.txt
index daa11eb3576..cc693ced4c2 100644
--- a/vespalib/src/tests/coro/lazy/CMakeLists.txt
+++ b/vespalib/src/tests/coro/lazy/CMakeLists.txt
@@ -1,4 +1,4 @@
-# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
vespa_add_executable(vespalib_lazy_test_app TEST
SOURCES
lazy_test.cpp
diff --git a/vespalib/src/tests/coro/lazy/lazy_test.cpp b/vespalib/src/tests/coro/lazy/lazy_test.cpp
index f6767873957..d5031ae6738 100644
--- a/vespalib/src/tests/coro/lazy/lazy_test.cpp
+++ b/vespalib/src/tests/coro/lazy/lazy_test.cpp
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/vespalib/coro/lazy.h>
#include <vespa/vespalib/coro/completion.h>
diff --git a/vespalib/src/tests/coro/received/CMakeLists.txt b/vespalib/src/tests/coro/received/CMakeLists.txt
index 2441d557664..c85523fd6b0 100644
--- a/vespalib/src/tests/coro/received/CMakeLists.txt
+++ b/vespalib/src/tests/coro/received/CMakeLists.txt
@@ -1,4 +1,4 @@
-# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
vespa_add_executable(vespalib_received_test_app TEST
SOURCES
received_test.cpp
diff --git a/vespalib/src/tests/coro/received/received_test.cpp b/vespalib/src/tests/coro/received/received_test.cpp
index 96d1e7942af..6f7be6dc4ef 100644
--- a/vespalib/src/tests/coro/received/received_test.cpp
+++ b/vespalib/src/tests/coro/received/received_test.cpp
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/vespalib/coro/received.h>
#include <vespa/vespalib/util/time.h>
diff --git a/vespalib/src/tests/coro/waiting_for/CMakeLists.txt b/vespalib/src/tests/coro/waiting_for/CMakeLists.txt
index d9eaa7eaf03..e4850d3a522 100644
--- a/vespalib/src/tests/coro/waiting_for/CMakeLists.txt
+++ b/vespalib/src/tests/coro/waiting_for/CMakeLists.txt
@@ -1,4 +1,4 @@
-# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
vespa_add_executable(vespalib_waiting_for_test_app TEST
SOURCES
waiting_for_test.cpp
diff --git a/vespalib/src/tests/coro/waiting_for/waiting_for_test.cpp b/vespalib/src/tests/coro/waiting_for/waiting_for_test.cpp
index a43ef952c60..a30b0dbc87e 100644
--- a/vespalib/src/tests/coro/waiting_for/waiting_for_test.cpp
+++ b/vespalib/src/tests/coro/waiting_for/waiting_for_test.cpp
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/vespalib/coro/lazy.h>
#include <vespa/vespalib/coro/completion.h>