summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorjacqueline <me@jacqueline.id.au>2023-05-24 07:20:16 +1000
committerjacqueline <me@jacqueline.id.au>2023-05-24 07:20:16 +1000
commit3041e48ca6ebcbe107927e4b7c212ef1a829fab0 (patch)
tree4d5b6382fed84ef475fb10b509aa8dd47d1ac17f /test
parent876e5e70e93e3031e2acb32ddedc3b262d737ded (diff)
parenta4f94c812a4da7254d31af4061a8f234a1e0e23d (diff)
downloadtangara-fw-3041e48ca6ebcbe107927e4b7c212ef1a829fab0.tar.gz
Merge branch 'main' of git.sr.ht:~jacqueline/tangara-fw
Diffstat (limited to 'test')
-rw-r--r--test/CMakeLists.txt6
-rw-r--r--test/fixtures/CMakeLists.txt6
-rw-r--r--test/fixtures/i2c_fixture.hpp6
-rw-r--r--test/fixtures/spi_fixture.hpp6
-rw-r--r--test/main/CMakeLists.txt6
-rw-r--r--test/main/main.cpp6
-rw-r--r--test/sdkconfig.test4
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