<div dir="ltr"><div><div>This code was already present in the psxtests written by Vaibhav last year <br></div>I haven't changed any information related to copyright.<br></div><div>If anything needs to be changed. I will change it in the next patch.</div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Mar 26, 2020 at 11:12 PM Aditya Upadhyay <<a href="mailto:aadit0402@gmail.com">aadit0402@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="auto">One more thing, If Vaibhav has provided you this source code and you modified then put Vaibhav's name alongwith your name as Copyright info. </div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, 26 Mar 2020, 23:10 Aditya Upadhyay, <<a href="mailto:aadit0402@gmail.com" target="_blank">aadit0402@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="auto"><div><br><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, 26 Mar 2020, 22:59 Eshan dhawan, <<a href="mailto:eshandhawan51@gmail.com" rel="noreferrer" target="_blank">eshandhawan51@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">---<br>
testsuites/psxtests/psxfenv01/init.c | 87 ++++++++++++++++-----<br>
testsuites/psxtests/psxfenv01/psxfenv01.doc | 9 ++-<br>
testsuites/psxtests/psxfenv01/psxfenv01.scn | 4 -<br>
3 files changed, 76 insertions(+), 24 deletions(-)<br>
<br>
diff --git a/testsuites/psxtests/psxfenv01/init.c b/testsuites/psxtests/psxfenv01/init.c<br>
index cdb0fa596e..158816888d 100644<br>
--- a/testsuites/psxtests/psxfenv01/init.c<br>
+++ b/testsuites/psxtests/psxfenv01/init.c<br>
@@ -46,11 +46,12 @@<br>
#include <string.h><br>
#include <rtems/test.h><br>
#include <tmacros.h><br>
+#include <float.h><br>
<br>
const char rtems_test_name[] = "PSXFENV 01";<br>
<br>
/* forward declarations to avoid warnings */<br>
-rtems_task Init(rtems_task_argument ignored);<br>
+rtems_task Init( rtems_task_argument ignored );<br>
<br>
/* Test Function Begins */<br>
rtems_task Init(rtems_task_argument ignored)<br>
@@ -62,40 +63,90 @@ rtems_task Init(rtems_task_argument ignored)<br>
<br>
/*<br>
* 'FE_ALL_EXCEPT' will be defined only when 'feclearexcept()',<br>
- * 'fegetexceptflag()', 'feraiseexcept()', 'fesetexceptflag()' and<br>
- * 'fetestexcept()' functions are supported by the architecture.<br>
+ * fegetexceptflag() , feraiseexcept(), fesetexceptflag() and<br>
+ * fetestexcept() functions are supported by the architecture.<br>
* Hence their testcases can be wrapped under #ifdef and #endif.<br>
*/<br>
#ifdef FE_ALL_EXCEPT /* floating-point exceptions */<br>
- puts( "fesetenv(FE_DFL_ENV)." );<br>
- r = fesetenv(FE_DFL_ENV);<br>
- if (r)<br>
- printf("fesetenv ==> %d\n", r);<br>
+ r = fesetenv( FE_DFL_ENV );<br>
+ if ( r ) {<br>
+ printf( "fesetenv ==> %d\n", r);<br>
+ }<br>
rtems_test_assert( r == 0 );<br>
<br>
- /* Test 'feclearexcept()' and 'fetestexcept()' in one go. */<br>
- puts( "feclearexcept(FE_ALL_EXCEPT)." );<br>
- r = feclearexcept(FE_ALL_EXCEPT);<br>
- if (r)<br>
- printf("feclearexcept ==> 0x%x\n", r);<br>
+ /* Test feclearexcept() and fetestexcept() in one go. */<br>
+ r = feclearexcept( FE_ALL_EXCEPT );<br>
+ if ( r ) {<br>
+ printf( "feclearexcept ==> 0x%x\n", r );<br>
+ } <br>
rtems_test_assert( r == 0 );<br>
<br>
r = fetestexcept( FE_ALL_EXCEPT );<br>
- if (r)<br>
- printf("fetestexcept ==> 0x%x\n", r);<br>
+ if ( r ) {<br>
+ printf( "fetestexcept ==> 0x%x\n", r );<br>
+ }<br>
rtems_test_assert( r == 0 );<br>
<br>
- /* Test 'FE_DIVBYZERO' */<br>
- puts( "Divide by zero and confirm fetestexcept()" );<br>
+ /* Test 'FE_DIVBYZERO' <br>
+ *Divide by zero and confirm fetestexcept() */<br>
a = 0.0;<br>
b = 1.0;<br>
c = b/a;<br>
(void) c;<br>
+ /* Test fegetexceptflag() and fesetexceptflag() */<br>
+ r = fegetexceptflag( &excepts, FE_ALL_EXCEPT );<br>
+ if ( r ) {<br>
+ printf( "fegetexceptflag ==> 0x%x\n", r );<br>
+ }<br>
+ rtems_test_assert( r == 0 );<br>
<br>
- fegetexceptflag(&excepts,FE_ALL_EXCEPT);<br>
+ r = fesetexceptflag( &excepts, FE_ALL_EXCEPT );<br>
+ if ( r ) {<br>
+ printf( "fesetexceptflag ==> 0x%x\n", r );<br>
+ }<br>
+ rtems_test_assert( r == 0 );<br>
<br>
+ /* Test for fegetround() and fesetround() <br>
+ * They have four main macros to be tested separated by ifdef<br>
+ * Since not all architectures support them <br>
+ * The test case gets and sets the rounding directions */<br>
+#ifdef FE_TONEAREST<br>
+ rtems_test_assert( fegetround() == FE_TONEAREST ); <br>
+#endif<br>
+#ifdef FE_TOWARDZERO <br>
+ r = fesetround( FE_TOWARDZERO );<br>
+ if ( r ) {<br>
+ printf( "fesetround ==> 0x%x\n", r ); <br>
+ } <br>
+ rtems_test_assert( r == 0 );<br>
+ rtems_test_assert( fegetround() == FE_TOWARDZERO );<br>
+#endif<br>
+#ifdef FE_DOWNWARD<br>
+ r = fesetround( FE_DOWNWARD );<br>
+ if ( r ) {<br>
+ printf( "fesetround ==> 0x%x\n", r ); <br>
+ } <br>
+ rtems_test_assert( r == 0 );<br>
+ rtems_test_assert( fegetround() == FE_DOWNWARD );<br>
+#endif<br>
+#ifdef FE_UPWARD<br>
+ r = fesetround( FE_UPWARD );<br>
+ if ( r ) {<br>
+ printf( "fesetround ==> 0x%x\n", r ); <br>
+ } <br>
+ rtems_test_assert( r == 0 );<br>
+ rtems_test_assert( fegetround() == FE_UPWARD );<br>
+#endif<br>
+#ifdef FE_TONEAREST<br>
+ r = fesetround( FE_TONEAREST );<br>
+ if ( r ) {<br>
+ printf( "fesetround ==> 0x%x\n", r );<br>
+ } <br>
+ rtems_test_assert( r == 0 );<br>
+#endif<br>
+ <br>
#ifdef FE_DIVBYZERO<br>
- r = feraiseexcept(FE_DIVBYZERO);<br>
+ r = feraiseexcept( FE_DIVBYZERO ) ;<br>
rtems_test_assert( fetestexcept( FE_DIVBYZERO ) );<br>
#endif<br>
<br>
diff --git a/testsuites/psxtests/psxfenv01/psxfenv01.doc b/testsuites/psxtests/psxfenv01/psxfenv01.doc<br>
index 3aa7757496..0238372013 100644<br>
--- a/testsuites/psxtests/psxfenv01/psxfenv01.doc<br>
+++ b/testsuites/psxtests/psxfenv01/psxfenv01.doc<br>
@@ -1,4 +1,4 @@<br>
-# COPYRIGHT (c) 2019<br>
+# COPYRIGHT (c) 2019<br>
# On-Line Applications Research Corporation (OAR).<br>
#<br>
# SPDX-License-Identifier: BSD-2-Clause<br>
@@ -12,8 +12,13 @@ Directives:<br>
fesetenv<br>
feclearexcept<br>
fetestexcept<br>
- texceptflag<br>
feraiseexcept<br>
+ fesetexeptflag<br>
+ fegetexeptflag<br>
+ fegetround<br>
+ fesetround<br>
+ <br>
+<br></blockquote></div></div><div dir="auto"><br></div><div dir="auto">Just remove this one unnecessary space after fesetround. Otherwise It looks good. </div><div dir="auto"><br></div><div dir="auto"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
Concepts:<br>
<br>
diff --git a/testsuites/psxtests/psxfenv01/psxfenv01.scn b/testsuites/psxtests/psxfenv01/psxfenv01.scn<br>
index 21395e6712..6ea3bc255e 100644<br>
--- a/testsuites/psxtests/psxfenv01/psxfenv01.scn<br>
+++ b/testsuites/psxtests/psxfenv01/psxfenv01.scn<br>
@@ -1,7 +1,3 @@<br>
*** BEGIN OF TEST PSXFENV 01 ***<br>
-fesetenv(FE_DFL_ENV).<br>
-feclearexcept(FE_ALL_EXCEPT).<br>
-Divide by zero and confirm fetestexcept()<br>
-<br>
*** END OF TEST PSXFENV 01 ***<br>
<br>
-- <br>
2.17.1<br>
<br>
</blockquote></div></div></div>
</blockquote></div>
</blockquote></div>