From 5eff916e19337110551d33705f2dfa0ee660c50f Mon Sep 17 00:00:00 2001 From: Mihail Stoykov Date: Mon, 27 Sep 2021 12:28:51 +0300 Subject: [PATCH] Add missing copyright to non generated files --- cloudapi/doc.go | 20 ++++++++++++++++++++ js/empty_iteartions_bench_test.go | 20 ++++++++++++++++++++ lib/executor/vu_handle_test.go | 20 ++++++++++++++++++++ lib/metrics/registry_test.go | 20 ++++++++++++++++++++ log/tokenizer.go | 20 ++++++++++++++++++++ log/tokenizer_test.go | 20 ++++++++++++++++++++ 6 files changed, 120 insertions(+) diff --git a/cloudapi/doc.go b/cloudapi/doc.go index 822de27b0c55..95cac89922b9 100644 --- a/cloudapi/doc.go +++ b/cloudapi/doc.go @@ -1,3 +1,23 @@ +/* + * + * k6 - a next-generation load testing tool + * Copyright (C) 2021 Load Impact + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + * + */ + // Package cloudapi contains several things related to the k6 cloud - various // data and config structures, a REST API client, log streaming logic, etc. They // are all used in cloud tests (i.e. `k6 cloud`), and in local tests emitting diff --git a/js/empty_iteartions_bench_test.go b/js/empty_iteartions_bench_test.go index 2c9ef01c2a88..a2c6490d508a 100644 --- a/js/empty_iteartions_bench_test.go +++ b/js/empty_iteartions_bench_test.go @@ -1,3 +1,23 @@ +/* + * + * k6 - a next-generation load testing tool + * Copyright (C) 2021 Load Impact + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + * + */ + package js import ( diff --git a/lib/executor/vu_handle_test.go b/lib/executor/vu_handle_test.go index 4dd1cb7ff080..59c0d8ac4206 100644 --- a/lib/executor/vu_handle_test.go +++ b/lib/executor/vu_handle_test.go @@ -1,3 +1,23 @@ +/* + * + * k6 - a next-generation load testing tool + * Copyright (C) 2021 Load Impact + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + * + */ + package executor import ( diff --git a/lib/metrics/registry_test.go b/lib/metrics/registry_test.go index 5daf5987bf05..890b84d3fdf0 100644 --- a/lib/metrics/registry_test.go +++ b/lib/metrics/registry_test.go @@ -1,3 +1,23 @@ +/* + * + * k6 - a next-generation load testing tool + * Copyright (C) 2021 Load Impact + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + * + */ + package metrics import ( diff --git a/log/tokenizer.go b/log/tokenizer.go index a48786e392f0..53c89253fb36 100644 --- a/log/tokenizer.go +++ b/log/tokenizer.go @@ -1,3 +1,23 @@ +/* + * + * k6 - a next-generation load testing tool + * Copyright (C) 2021 Load Impact + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + * + */ + package log import "fmt" diff --git a/log/tokenizer_test.go b/log/tokenizer_test.go index 83fa22aca987..fa67f8b29c20 100644 --- a/log/tokenizer_test.go +++ b/log/tokenizer_test.go @@ -1,3 +1,23 @@ +/* + * + * k6 - a next-generation load testing tool + * Copyright (C) 2021 Load Impact + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + * + */ + package log import (