summaryrefslogtreecommitdiff
path: root/tests/status-request.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/status-request.c')
-rw-r--r--tests/status-request.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/status-request.c b/tests/status-request.c
index 752b222d9a..5c165ae5f0 100644
--- a/tests/status-request.c
+++ b/tests/status-request.c
@@ -289,7 +289,13 @@ void start(const char *prio)
void doit(void)
{
- start("NORMAL:-VERS-ALL:+VERS-TLS1.2");
+ /* This test does not work with TLS 1.2 under FIPS, as
+ * extended master secret extension needs to be negotiated
+ * through extensions.
+ */
+ if (!gnutls_fips140_mode_enabled()) {
+ start("NORMAL:-VERS-ALL:+VERS-TLS1.2");
+ }
start("NORMAL:-VERS-ALL:+VERS-TLS1.3");
start("NORMAL");
}