From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7857) id 949CF385B52A; Thu, 16 Feb 2023 14:58:56 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 949CF385B52A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1676559536; bh=e57zhUB1sE9uoQgu86wFn5bWaJH1e8HRbE3BSjWO6fA=; h=From:To:Subject:Date:From; b=m+nZv8bEygHGq8p4R144PwEIW5Ls8SSGQRPIHzIwPD9btML2h/+o59/VUWJ9tO6XI ufpciQfD5wC8X8zgovBd3JvXU3D9ity8oPt4KhHARu+dVETdZCmyAqxXfe8DdTk66g V2DFYtBOYaTPLH7kNyhXXthAiSTJ/edU7VD+z3zY= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Matthias Kretz To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r13-6091] libstdc++: Document timeout and timeout-factor of simd tests X-Act-Checkin: gcc X-Git-Author: Matthias Kretz X-Git-Refname: refs/heads/master X-Git-Oldrev: 53b55701aed6896f456cdec7997ac6bbef1d6074 X-Git-Newrev: b0f4b166ada3b92da5f2917ac3f4397e99d1b58f Message-Id: <20230216145856.949CF385B52A@sourceware.org> Date: Thu, 16 Feb 2023 14:58:56 +0000 (GMT) List-Id: https://gcc.gnu.org/g:b0f4b166ada3b92da5f2917ac3f4397e99d1b58f commit r13-6091-gb0f4b166ada3b92da5f2917ac3f4397e99d1b58f Author: Matthias Kretz Date: Thu Feb 2 10:48:10 2023 +0100 libstdc++: Document timeout and timeout-factor of simd tests Signed-off-by: Matthias Kretz libstdc++-v3/ChangeLog: * testsuite/experimental/simd/README.md: Document the timeout and timeout-factor directives. Minor typo fixed. Diff: --- libstdc++-v3/testsuite/experimental/simd/README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/libstdc++-v3/testsuite/experimental/simd/README.md b/libstdc++-v3/testsuite/experimental/simd/README.md index b82453df403..ef8b7c33de7 100644 --- a/libstdc++-v3/testsuite/experimental/simd/README.md +++ b/libstdc++-v3/testsuite/experimental/simd/README.md @@ -139,7 +139,13 @@ allowed_distance)` macros. test then shows as "XFAIL: ...". If the test passes, the test shows "XPASS: ...". -All patterns are matched via +* `timeout: ` + Set the timeout of this test to `` seconds. + +* `timeout-factor: ` + Multiply the default timeout with ``. + +All patterns except `timeout` and `timeout-factor` are matched via ```sh case '' in ) @@ -147,7 +153,7 @@ case '' in ;; esac ``` -The `` is implicitly adds a `*` wildcard before and after the +The `` implicitly adds a `*` wildcard before and after the pattern. Thus, the `CXXFLAGS` pattern matches a substring and all other patterns require a full match.