diff options
author | Matthias Kretz <m.kretz@gsi.de> | 2023-02-02 10:48:10 +0100 |
---|---|---|
committer | Matthias Kretz <m.kretz@gsi.de> | 2023-02-16 15:58:33 +0100 |
commit | b0f4b166ada3b92da5f2917ac3f4397e99d1b58f (patch) | |
tree | c906a28515ae0098f32643998b8321ccc51860aa /libstdc++-v3 | |
parent | 53b55701aed6896f456cdec7997ac6bbef1d6074 (diff) | |
download | gcc-b0f4b166ada3b92da5f2917ac3f4397e99d1b58f.zip gcc-b0f4b166ada3b92da5f2917ac3f4397e99d1b58f.tar.gz gcc-b0f4b166ada3b92da5f2917ac3f4397e99d1b58f.tar.bz2 |
libstdc++: Document timeout and timeout-factor of simd tests
Signed-off-by: Matthias Kretz <m.kretz@gsi.de>
libstdc++-v3/ChangeLog:
* testsuite/experimental/simd/README.md: Document the timeout
and timeout-factor directives. Minor typo fixed.
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/testsuite/experimental/simd/README.md | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/libstdc++-v3/testsuite/experimental/simd/README.md b/libstdc++-v3/testsuite/experimental/simd/README.md index b82453d..ef8b7c3 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: <number>` + Set the timeout of this test to `<number>` seconds. + +* `timeout-factor: <number>` + Multiply the default timeout with `<number>`. + +All patterns except `timeout` and `timeout-factor` are matched via ```sh case '<test context>' in <pattern>) @@ -147,7 +153,7 @@ case '<test context>' in ;; esac ``` -The `<CXXFLAGS pattern>` is implicitly adds a `*` wildcard before and after the +The `<CXXFLAGS pattern>` implicitly adds a `*` wildcard before and after the pattern. Thus, the `CXXFLAGS` pattern matches a substring and all other patterns require a full match. |