Notice: We have migrated to GitLab launching 2024-05-01 see here: https://gitlab.rtems.org/

Changes between Version 4 and Version 5 of Projects/GSoC/TestSuite/framework_design


Ignore:
Timestamp:
08/23/12 07:22:20 (12 years ago)
Author:
Xiaochen Pan
Comment:

/* Floats */

Legend:

Unmodified
Added
Removed
Modified
  • Projects/GSoC/TestSuite/framework_design

    v4 v5  
    8787    assert_float_within(delta, expected, actual)
    8888
    89     assert_float_lt(expected, actual)                                            //Asserts that the actual value is less than expected within a couple of significant bits
     89    assert_float_lt(expected, actual)                                           
     90Asserts that the actual value is less than expected within a couple of significant bits
    9091
    9192    assert_float_le(expected, actual)   
    92                                        
     93
    9394    assert_float_gt(expected, actual)
    9495
     
    101102    assert_double_within(delta, expected, actual)
    102103
    103     assert_double_lt(expected, actual)                                            //Asserts that the actual value is less than expected within a couple of significant bits
     104    assert_double_lt(expected, actual)                                           
     105Asserts that the actual value is less than expected within a couple of significant bits
    104106
    105107    assert_double_le(expected, actual)           
    106                                
     108
    107109    assert_double_gt(expected, actual)
    108110