From: Matthias Kretz Date: Thu, 2 Feb 2023 09:48:10 +0000 (+0100) Subject: libstdc++: Document timeout and timeout-factor of simd tests X-Git-Tag: releases/gcc-12.3.0~335 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=385972ded7c35ac2e7e4a3e396b4387df40add2e;p=thirdparty%2Fgcc.git 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 --git a/libstdc++-v3/testsuite/experimental/simd/README.md b/libstdc++-v3/testsuite/experimental/simd/README.md index b82453df4037..ef8b7c33de77 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.