This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
[PATCH] testsuite/experimental/random/randint.cc
- From: David Edelsohn <dje dot gcc at gmail dot com>
- To: Jonathan Wakely <jwakely dot gcc at gmail dot com>
- Cc: "libstdc++ at gcc dot gnu dot org" <libstdc++ at gcc dot gnu dot org>, GCC Patches <gcc-patches at gcc dot gnu dot org>
- Date: Sat, 14 Nov 2015 09:21:35 -0500
- Subject: [PATCH] testsuite/experimental/random/randint.cc
- Authentication-results: sourceware.org; auth=none
Testcases that use TLS need additional options on some targets
(normall -pthread). This fixes the testcase on AIX and Solaris.
Committed as obvious.
* testsuite/experimental/random/randint.cc: Add dg-add-options tls.
Index: testsuite/experimental/random/randint.cc
===================================================================
--- testsuite/experimental/random/randint.cc (revision 230347)
+++ testsuite/experimental/random/randint.cc (working copy)
@@ -1,5 +1,6 @@
// { dg-options "-std=gnu++14" }
// { dg-require-effective-target tls_runtime }
+// { dg-add-options tls }
// Copyright (C) 2015 Free Software Foundation, Inc.
//
Thanks, David