summaryrefslogtreecommitdiff
path: root/tests/misc
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gmplib.org>2011-07-05 09:49:46 +0200
committerTorbjorn Granlund <tege@gmplib.org>2011-07-05 09:49:46 +0200
commit13bdf46ed9b1859867238f3e426538c4549443a1 (patch)
treeeae5e9dc513311eae44db565d6e8fb6a13e88a52 /tests/misc
parentff1e589c20dd05a187f3a1451a027285f2b62c10 (diff)
downloadgmp-13bdf46ed9b1859867238f3e426538c4549443a1.tar.gz
Disable test for mingw.
Diffstat (limited to 'tests/misc')
-rw-r--r--tests/misc/t-locale.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/misc/t-locale.c b/tests/misc/t-locale.c
index e75b217a3..5a9b5f131 100644
--- a/tests/misc/t-locale.c
+++ b/tests/misc/t-locale.c
@@ -1,6 +1,6 @@
/* Test locale support, or attempt to do so.
-Copyright 2001, 2002 Free Software Foundation, Inc.
+Copyright 2001, 2002, 2011 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
@@ -41,6 +41,13 @@ along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */
#include "gmp-impl.h"
#include "tests.h"
+#ifdef __MINGW32__
+int
+main (void)
+{
+ exit (0);
+}
+#else
const char *decimal_point;
@@ -191,3 +198,4 @@ main (void)
tests_memory_end ();
exit (0);
}
+#endif