Index: uspace/lib/pcut/include/pcut/pcut.h
===================================================================
--- uspace/lib/pcut/include/pcut/pcut.h	(revision 9b201262edcb92c27cf4a25a8379320113426ab7)
+++ uspace/lib/pcut/include/pcut/pcut.h	(revision f43742e2319f2b70763dd51bbc6ef09fd8a86f2e)
@@ -36,3 +36,17 @@
 #include <pcut/tests.h>
 
+
+/** PCUT outcome: test passed. */
+#define PCUT_OUTCOME_PASS 0
+
+/** PCUT outcome: test failed. */
+#define PCUT_OUTCOME_FAIL 1
+
+/** PCUT outcome: test failed unexpectedly. */
+#define PCUT_OUTCOME_INTERNAL_ERROR 2
+
+/** PCUT outcome: invalid invocation of the final program. */
+#define PCUT_OUTCOME_BAD_INVOCATION 3
+
+
 #endif
