summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2014-05-14 15:33:27 +0200
committerDaniel Vetter <daniel.vetter@ffwll.ch>2014-05-14 15:34:00 +0200
commit831eb2119793e55d9c0e1be363a2f480f3183ff6 (patch)
tree0ebfc3ff6de7c63aa17142a8221bd822d079b75d
parent17eb062661e02a3cea97c4893d373ce8124a0b94 (diff)
lib/igt_core: Fixup docs with symbolic exit codes
Conflict between me and Thomas pushing patches in parallel. Cc: Thomas Wood <thomas.wood@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r--lib/igt_core.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/igt_core.c b/lib/igt_core.c
index 05bc19bc..6e553cf2 100644
--- a/lib/igt_core.c
+++ b/lib/igt_core.c
@@ -178,9 +178,10 @@
*
* i-g-t testcase are all executables which should be run as root on an
* otherwise completely idle system. The test status is reflected in the
- * exitcode. 0 means "success", 77 "skip", 78 that some operation "timed out".
- * All other exit codes encode a failed test result, including any abnormal
- * termination of the test (e.g. by SIGKILL).
+ * exitcode. #IGT_EXIT_SUCCESS means "success", #IGT_EXIT_SKIP "skip",
+ * #IGT_EXIT_TIMEOUT that some operation "timed out". All other exit codes
+ * encode a failed test result, including any abnormal termination of the test
+ * (e.g. by SIGKILL).
*
* On top of that tests may report unexpected results and minor issues to
* stderr. If stderr is non-empty the test result should be treated as "warn".