We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f3c3c5 commit d334c5eCopy full SHA for d334c5e
include/testing/unity_config.h
@@ -47,4 +47,10 @@
47
# define UNITY_OUTPUT_COLOR 1
48
#endif
49
50
+/* Enable Unity TEST_PRINTF */
51
+
52
+#ifdef CONFIG_TESTING_UNITY_PRINT_FORMATTED
53
+# define UNITY_INCLUDE_PRINT_FORMATTED 1
54
+#endif
55
56
#endif /* UNITY_CONFIG_H */
testing/unity/Kconfig
@@ -29,6 +29,12 @@ config TESTING_UNITY_OUTPUT_COLOR
29
bool "Output color"
30
default n
31
---help---
32
- Select this if your want to add some colors to your tests
+ Select this if you want to add some colors to your tests
33
34
+config TESTING_UNITY_PRINT_FORMATTED
35
+ bool "Unity printf"
36
+ default y
37
+ ---help---
38
+ Select this if you you want to use the Unity TEST_PRINTF macro.
39
40
endif # TESTING_UNITY
0 commit comments