diff options
| author | jacqueline <me@jacqueline.id.au> | 2023-05-23 13:56:22 +1000 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2023-05-23 13:56:22 +1000 |
| commit | a4f94c812a4da7254d31af4061a8f234a1e0e23d (patch) | |
| tree | e8f629a45251dd486ae57f78279243e1f1728d44 /test | |
| parent | d71f726c42963d55809605b4dc4144970ca0f230 (diff) | |
| download | tangara-fw-a4f94c812a4da7254d31af4061a8f234a1e0e23d.tar.gz | |
Annote E V E R Y T H I N G with license info
Diffstat (limited to 'test')
| -rw-r--r-- | test/CMakeLists.txt | 6 | ||||
| -rw-r--r-- | test/fixtures/CMakeLists.txt | 6 | ||||
| -rw-r--r-- | test/fixtures/i2c_fixture.hpp | 6 | ||||
| -rw-r--r-- | test/fixtures/spi_fixture.hpp | 6 | ||||
| -rw-r--r-- | test/main/CMakeLists.txt | 6 | ||||
| -rw-r--r-- | test/main/main.cpp | 6 | ||||
| -rw-r--r-- | test/sdkconfig.test | 4 |
7 files changed, 40 insertions, 0 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index fdd2735f..1b90a614 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + cmake_minimum_required(VERSION 3.16) include($ENV{PROJ_PATH}/tools/cmake/common.cmake) diff --git a/test/fixtures/CMakeLists.txt b/test/fixtures/CMakeLists.txt index fd98a7cd..9895cf8d 100644 --- a/test/fixtures/CMakeLists.txt +++ b/test/fixtures/CMakeLists.txt @@ -1 +1,7 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + idf_component_register(INCLUDE_DIRS "." REQUIRES drivers) diff --git a/test/fixtures/i2c_fixture.hpp b/test/fixtures/i2c_fixture.hpp index 54794591..e7e5d42d 100644 --- a/test/fixtures/i2c_fixture.hpp +++ b/test/fixtures/i2c_fixture.hpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #pragma once #include "catch2/catch.hpp" diff --git a/test/fixtures/spi_fixture.hpp b/test/fixtures/spi_fixture.hpp index c2db484c..a5e9cac3 100644 --- a/test/fixtures/spi_fixture.hpp +++ b/test/fixtures/spi_fixture.hpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #pragma once #include "catch2/catch.hpp" diff --git a/test/main/CMakeLists.txt b/test/main/CMakeLists.txt index f0d35421..d629441d 100644 --- a/test/main/CMakeLists.txt +++ b/test/main/CMakeLists.txt @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + idf_component_register( SRCS "main.cpp" INCLUDE_DIRS "." diff --git a/test/main/main.cpp b/test/main/main.cpp index e012218c..2a935397 100644 --- a/test/main/main.cpp +++ b/test/main/main.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #include <stdio.h> #include <cstdint> diff --git a/test/sdkconfig.test b/test/sdkconfig.test index 1247298b..42c5d0d0 100644 --- a/test/sdkconfig.test +++ b/test/sdkconfig.test @@ -1,3 +1,7 @@ +# Copyright 2023 jacqueline <me@jacqueline.id.au> +# +# SPDX-License-Identifier: CC0-1.0 + CONFIG_BOOTLOADER_LOG_LEVEL_INFO=y CONFIG_BOOTLOADER_LOG_LEVEL=3 CONFIG_COMPILER_CXX_EXCEPTIONS=y |
