From patchwork Fri Nov 28 13:45:31 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Wood X-Patchwork-Id: 5403661 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 864B59F1C5 for ; Fri, 28 Nov 2014 13:45:51 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id BA512201C7 for ; Fri, 28 Nov 2014 13:45:50 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 83C87201C0 for ; Fri, 28 Nov 2014 13:45:49 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 83DD06EE69; Fri, 28 Nov 2014 05:45:48 -0800 (PST) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mail-wi0-f170.google.com (mail-wi0-f170.google.com [209.85.212.170]) by gabe.freedesktop.org (Postfix) with ESMTP id 06D886E370 for ; Fri, 28 Nov 2014 05:45:42 -0800 (PST) Received: by mail-wi0-f170.google.com with SMTP id bs8so21178865wib.5 for ; Fri, 28 Nov 2014 05:45:41 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references; bh=vM4W6xch4F11JL8nhJQkBd9KJbXmfopy1QZvV8tSWRo=; b=Jmv4BGvp7oluw/a5iEa8mq+c2s0+/23miGahnCwAWcM0fTsG1JwzHA4fkLPYyElR4L AfEbu2MLL+IdY5JhNmxHQ2IBoA6INKGf4CwsDwyLAidZn7UWq+Af+gjA1C+wy0EGImiv a8TskokwweK2g7MRf1ZNYeCGYnYH7xf/k+pvf1Gf4bI4VBAmHbjlwUdiGX1NUVpsmRSG iSE0sJ+P6AtOk75I8ThHZURzy52NECuAvC//IbBwgj9i7Sr0Mu5ivf5ntr0nZDqNms7c w7p4ffw0L3Ekfr+aoSJKJYq0s5837EllhD5mwl02xwzPiTSG9+Row7Fv5250NygtLZxy X1nw== X-Gm-Message-State: ALoCoQlUnSscQFCmTfP0AmzpFld0bES7U0KDwYlgukEwOS2HH8BNSQnistq/VU7UM3bSCMfOFtde X-Received: by 10.180.74.68 with SMTP id r4mr59516741wiv.33.1417182341356; Fri, 28 Nov 2014 05:45:41 -0800 (PST) Received: from pistachio.icx.intel.com ([83.217.123.106]) by mx.google.com with ESMTPSA id fo12sm29621243wic.19.2014.11.28.05.45.40 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 28 Nov 2014 05:45:40 -0800 (PST) From: Thomas Wood To: intel-gfx@lists.freedesktop.org Date: Fri, 28 Nov 2014 13:45:31 +0000 Message-Id: <1417182334-20027-3-git-send-email-thomas.wood@intel.com> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1417182334-20027-1-git-send-email-thomas.wood@intel.com> References: <1417182334-20027-1-git-send-email-thomas.wood@intel.com> Subject: [Intel-gfx] [PATCH i-g-t 3/6] docs: add exit status documentation X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" X-Spam-Status: No, score=-4.2 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Thomas Wood --- .../intel-gpu-tools/igt_test_programs.xml | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/docs/reference/intel-gpu-tools/igt_test_programs.xml b/docs/reference/intel-gpu-tools/igt_test_programs.xml index 2969894..07285fe 100644 --- a/docs/reference/intel-gpu-tools/igt_test_programs.xml +++ b/docs/reference/intel-gpu-tools/igt_test_programs.xml @@ -57,6 +57,45 @@ + + + Exit Status + + The following exit status codes are defined: + + + + + NameValueDescription + + + + #IGT_EXIT_SUCCESS + 0 + The test was succesful + + + #IGT_EXIT_SKIP + 77 + The test was skipped + + + #IGT_EXIT_TIMEOUT + 78 + The test took longer than expected and was stopped + + + #IGT_EXIT_INVALID + 79 + An invalid option or subtest was specified + + + + + + Any other exit status indicates a test failure. + +