summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxhdrs/assert/assert.c
diff options
context:
space:
mode:
authorJacob Shin <jacobshin313@gmail.com>2018-12-05 12:38:50 -0500
committerJoel Sherrill <joel@rtems.org>2018-12-05 12:00:52 -0600
commit7b5379d56791c2d2b5b747d3f05d552b7035f35c (patch)
tree4b1be73cf1f0da2e6a1e1f9372f2bdc1f5c4dbbc /testsuites/psxtests/psxhdrs/assert/assert.c
parenttestsuites/psxtests/Makefile.am: Disable psxhdrs for dirfd.c and fdopendir.c (diff)
downloadrtems-7b5379d56791c2d2b5b747d3f05d552b7035f35c.tar.bz2
psxhdrs: POSIX API Signature Compliance Tests for assert.h (GCI 2018)
Diffstat (limited to '')
-rw-r--r--testsuites/psxtests/psxhdrs/assert/assert.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/testsuites/psxtests/psxhdrs/assert/assert.c b/testsuites/psxtests/psxhdrs/assert/assert.c
new file mode 100644
index 0000000000..d04410d525
--- /dev/null
+++ b/testsuites/psxtests/psxhdrs/assert/assert.c
@@ -0,0 +1,35 @@
+/**
+ * @file
+ * @brief assert() 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 <assert.h>
+
+int test( void );
+
+int test( void )
+{
+ assert(1 == 1);
+
+ return (1);
+} \ No newline at end of file