summaryrefslogtreecommitdiff
path: root/libcr/tests
diff options
context:
space:
mode:
Diffstat (limited to 'libcr/tests')
-rw-r--r--libcr/tests/test_matrix.c6
-rw-r--r--libcr/tests/test_matrix/config.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/libcr/tests/test_matrix.c b/libcr/tests/test_matrix.c
index 1f23455..eaa4bdc 100644
--- a/libcr/tests/test_matrix.c
+++ b/libcr/tests/test_matrix.c
@@ -1,6 +1,6 @@
/* libcr/tests/test_matrix.c - Tests for libcr
*
- * Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
+ * Copyright (C) 2024-2025 Luke T. Shumaker <lukeshu@lukeshu.com>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
@@ -8,14 +8,14 @@
int a = 1;
-COROUTINE cr_init(void *) {
+COROUTINE init_cr(void *) {
cr_begin();
a = 2;
cr_end();
}
int main() {
- coroutine_add("init", cr_init, NULL);
+ coroutine_add("init", init_cr, NULL);
coroutine_main();
if (a != 2)
return 1;
diff --git a/libcr/tests/test_matrix/config.h b/libcr/tests/test_matrix/config.h
index 978b9ac..decd6de 100644
--- a/libcr/tests/test_matrix/config.h
+++ b/libcr/tests/test_matrix/config.h
@@ -1,4 +1,4 @@
-/* config.h - Compile-time configuration for libcr test_matrix
+/* libcr/tests/test_matrix/config.h - Compile-time configuration for libcr test_matrix
*
* Copyright (C) 2024-2025 Luke T. Shumaker <lukeshu@lukeshu.com>
* SPDX-License-Identifier: AGPL-3.0-or-later