summaryrefslogtreecommitdiff
path: root/tests/libtest/lib1541.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-09-05 20:30:26 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-09-06 09:51:06 +0200
commit8ca54a03ea08a7b0cf0a402018f329bd93124216 (patch)
tree1230417a6b4f3e7c42c1272ff7be7562a4e6268f /tests/libtest/lib1541.c
parente50a877df74f2d5558f9962089bcac0883e4aa38 (diff)
downloadcurl-8ca54a03ea08a7b0cf0a402018f329bd93124216.tar.gz
test1541: remove since it is a known bug
A shared connection cache is not thread-safe is a known issue. Stop testing this until we believe this issue is addressed. Reduces occasional test failures we don't care about. The test code in lib1541.c is left in git to allow us to restore it when we get to fix this. Closes #5922
Diffstat (limited to 'tests/libtest/lib1541.c')
-rw-r--r--tests/libtest/lib1541.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/libtest/lib1541.c b/tests/libtest/lib1541.c
index f3b41f5be..c47c54e25 100644
--- a/tests/libtest/lib1541.c
+++ b/tests/libtest/lib1541.c
@@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 2019 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -19,6 +19,13 @@
* KIND, either express or implied.
*
***************************************************************************/
+/*
+ * KNOW_BUGS "A shared connection cache is not thread-safe"
+ *
+ * This source code was used to verify shared connection cache but since this
+ * is a known issue the test is no longer built or run. This code is here to
+ * allow for testing once someone gets to work on fixing this.
+ */
#include "test.h"
#include "testutil.h"