From 7b5379d56791c2d2b5b747d3f05d552b7035f35c Mon Sep 17 00:00:00 2001 From: Jacob Shin Date: Wed, 5 Dec 2018 12:38:50 -0500 Subject: psxhdrs: POSIX API Signature Compliance Tests for assert.h (GCI 2018) --- testsuites/psxtests/psxhdrs/assert/assert.c | 35 +++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 testsuites/psxtests/psxhdrs/assert/assert.c (limited to 'testsuites/psxtests/psxhdrs/assert/assert.c') 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 + +int test( void ); + +int test( void ) +{ + assert(1 == 1); + + return (1); +} \ No newline at end of file -- cgit v1.2.3