Changeset 457 for trunk/Source/Base/Base/OSGFixedTest.cpp
- Timestamp:
- 12/24/06 07:27:43 (2 years ago)
- Files:
-
- trunk/Source/Base/Base/OSGFixedTest.cpp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/Base/Base/OSGFixedTest.cpp
r264 r457 45 45 // test should compile and maybe some checking of the computations can be done. 46 46 47 namespace { 47 SUITE(FixedTests) 48 { 48 49 49 50 #define OSG_FIXED32_TEST(VDest, VOp1, VOp2) \ … … 57 58 VDest = VOp2 / VOp1; 58 59 59 TEST( Fixed32_Interoperability)60 TEST(Interoperability) 60 61 { 61 62 OSG::Fixed32 f32a; … … 79 80 // Most of the next lines fail to compile because of ambigous 80 81 // constructor calls or missing operator overloads :( 81 82 82 83 // OSG_FIXED32_TEST(f32a, f32b, i8); 83 84 // OSG_FIXED32_TEST(f32a, f32b, ui8); … … 90 91 // OSG_FIXED32_TEST(f32a, f32b, r32); 91 92 // OSG_FIXED32_TEST(f32a, f32b, r64); 92 93 // Make this test fail unconditonally as a rem ainder that the above should93 94 // Make this test fail unconditonally as a reminder that the above should 94 95 // work. 95 96 CHECK(false); 96 97 } 97 98 98 } // namespace99 } // SUITE
