From 839c3c83993b2b8d9d6be20407afdf59be23e701 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Sun, 24 Nov 2024 23:02:59 -0700 Subject: libcr: Add very basic tests --- libcr/tests/test_matrix/config.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 libcr/tests/test_matrix/config.h (limited to 'libcr/tests/test_matrix/config.h') diff --git a/libcr/tests/test_matrix/config.h b/libcr/tests/test_matrix/config.h new file mode 100644 index 0000000..9802f08 --- /dev/null +++ b/libcr/tests/test_matrix/config.h @@ -0,0 +1,14 @@ +/* config.h - TODO + * + * Copyright (C) 2024 Luke T. Shumaker + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + +#ifndef _CONFIG_H_ +#define _CONFIG_H_ + +#define CONFIG_COROUTINE_DEFAULT_STACK_SIZE (4*1024) +#define CONFIG_COROUTINE_NAME_LEN 16 +#define CONFIG_COROUTINE_NUM 1 + +#endif /* _CONFIG_H_ */ -- cgit v1.2.3-2-g168b