summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxhdrs/ulimit
diff options
context:
space:
mode:
authorJacob Shin <jacobshin313@gmail.com>2018-12-04 17:29:37 -0500
committerJoel Sherrill <joel@rtems.org>2018-12-04 16:56:01 -0600
commitb0b095c8170c8259e894710b4028e2460aa560d8 (patch)
tree5d5503d4e7f786b0a3dc5ced6798face736eaac8 /testsuites/psxtests/psxhdrs/ulimit
parentCapitalize Rtems to RTEMS (diff)
downloadrtems-b0b095c8170c8259e894710b4028e2460aa560d8.tar.bz2
psxhdrs: POSIX API Signature Compliance Tests for ulimit.h (GCI 2018)
Diffstat (limited to 'testsuites/psxtests/psxhdrs/ulimit')
-rwxr-xr-xtestsuites/psxtests/psxhdrs/ulimit/ulimit.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/testsuites/psxtests/psxhdrs/ulimit/ulimit.c b/testsuites/psxtests/psxhdrs/ulimit/ulimit.c
new file mode 100755
index 0000000000..f7ea4236d3
--- /dev/null
+++ b/testsuites/psxtests/psxhdrs/ulimit/ulimit.c
@@ -0,0 +1,37 @@
+/**
+ * @file
+ * @brief ulimit() 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 <ulimit.h>
+
+int test( void );
+
+int test( void )
+{
+ long return_value;
+
+ return_value = ulimit(UL_GETFSIZE);
+
+ return ((return_value) != -1);
+} \ No newline at end of file