From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7857) id 13640385B529; Thu, 16 Feb 2023 21:04:10 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 13640385B529 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1676581450; bh=M0LoAEXqCrKfl2TQ83P3Ba5wQ5qLnjEev3FKDacTMBU=; h=From:To:Subject:Date:From; b=rQCqq+MrT5qFUj9e65u7h4ldDhdKzOSIUSuS67agl5PJCDbdr8oruA+9xxvfB+cMf anJuZLZe34P4949fA+bRv2ar/5pvsmjqJxFnci606UzYJ4B0cYzVNUS6mNiFFCQ8PC v85tFxlhuQ1bpxFy+AXO6G/fbSvzpk5Lz7QR4h1Q= 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 r12-9181] libstdc++: Document timeout and timeout-factor of simd tests X-Act-Checkin: gcc X-Git-Author: Matthias Kretz X-Git-Refname: refs/heads/releases/gcc-12 X-Git-Oldrev: d1084be3151d447cffe2d36667e67939dcdf3e75 X-Git-Newrev: 385972ded7c35ac2e7e4a3e396b4387df40add2e Message-Id: <20230216210410.13640385B529@sourceware.org> Date: Thu, 16 Feb 2023 21:04:10 +0000 (GMT) List-Id: https://gcc.gnu.org/g:385972ded7c35ac2e7e4a3e396b4387df40add2e commit r12-9181-g385972ded7c35ac2e7e4a3e396b4387df40add2e 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. (cherry picked from commit b0f4b166ada3b92da5f2917ac3f4397e99d1b58f) 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.