summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxhdrs
diff options
context:
space:
mode:
authorJacob Shin <jacobshin313@gmail.com>2018-12-05 12:14:17 -0500
committerJoel Sherrill <joel@rtems.org>2018-12-05 11:29:21 -0600
commit7fe5922a5f5ae4bfd88dbca609d4fe6730360056 (patch)
tree10ffd5d6038e73a85c33bed2e5bde2915b5dfc9b /testsuites/psxtests/psxhdrs
parentbsp/leon2: Move printk() support (diff)
downloadrtems-7fe5922a5f5ae4bfd88dbca609d4fe6730360056.tar.bz2
psxhdrs: POSIX API Signature Compliance Tests for langinfo.h (GCI 2018)
Diffstat (limited to 'testsuites/psxtests/psxhdrs')
-rw-r--r--testsuites/psxtests/psxhdrs/langinfo/nl_langinfo.c38
-rw-r--r--testsuites/psxtests/psxhdrs/langinfo/nl_langinfo_l.c41
2 files changed, 79 insertions, 0 deletions
diff --git a/testsuites/psxtests/psxhdrs/langinfo/nl_langinfo.c b/testsuites/psxtests/psxhdrs/langinfo/nl_langinfo.c
new file mode 100644
index 0000000000..298542ce05
--- /dev/null
+++ b/testsuites/psxtests/psxhdrs/langinfo/nl_langinfo.c
@@ -0,0 +1,38 @@
+/**
+ * @file
+ * @brief nl_langinfo() API Conformance Test
+ */
+
+ /*
+ * COPYRIGHT (c) 2018.
+ * Jacob Shin
+ *
+ * Permission to use, copy, modify, and/or distribute this software
+ * for any purpose with or without fee is hereby granted.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
+ * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
+ * BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
+ * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
+ * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
+ * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <langinfo.h>
+#include <locale.h>
+
+int test( void );
+
+int test( void )
+{
+ char *firstday;
+ setlocale(LC_ALL, "en_GB");
+
+ firstday = nl_langinfo(ABDAY_1);
+ return (firstday != NULL);
+}
diff --git a/testsuites/psxtests/psxhdrs/langinfo/nl_langinfo_l.c b/testsuites/psxtests/psxhdrs/langinfo/nl_langinfo_l.c
new file mode 100644
index 0000000000..b1820a37d2
--- /dev/null
+++ b/testsuites/psxtests/psxhdrs/langinfo/nl_langinfo_l.c
@@ -0,0 +1,41 @@
+/**
+ * @file
+ * @brief nl_langinfo_l() API Conformance Test
+ */
+
+ /*
+ * COPYRIGHT (c) 2018.
+ * Jacob Shin
+ *
+ * Permission to use, copy, modify, and/or distribute this software
+ * for any purpose with or without fee is hereby granted.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
+ * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
+ * BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
+ * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
+ * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
+ * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <langinfo.h>
+#include <locale.h>
+
+int test( void );
+
+int test( void )
+{
+ char *firstday;
+ locale_t loc = newlocale(LC_ALL_MASK, "C", (locale_t) 0);
+ setlocale(LC_ALL, "en_GB");
+
+ firstday = nl_langinfo_l(ABDAY_1, loc);
+
+ freelocale(loc);
+ return (firstday != NULL);
+}