2008-04-18 01:04 UTC+0100 Viktor Szakats (harbour.01 syenar hu)

* tests/rto_tb.prg
     + Added some assigment tests using numerics with decimals.
     ! Fixed typo in prev commit.
This commit is contained in:
Viktor Szakats
2008-04-17 23:08:10 +00:00
parent 4d2778e296
commit a1a3a527f7
2 changed files with 15 additions and 2 deletions

View File

@@ -8,6 +8,11 @@
2008-12-31 13:59 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2008-04-18 01:04 UTC+0100 Viktor Szakats (harbour.01 syenar hu)
* tests/rto_tb.prg
+ Added some assigment tests using numerics with decimals.
! Fixed typo in prev commit.
2008-04-18 00:01 UTC+0100 Viktor Szakats (harbour.01 syenar hu)
* tests/rto_tb.prg
+ Added some C5.3 var tests.

View File

@@ -184,7 +184,11 @@ FUNCTION Main( cArg01, cArg02, cArg03, cArg04 )
TBRAssign( 0 )
TBRAssign( 1 )
TBRAssign( 3 )
TBRAssign( 3.3 )
TBRAssign( 3.7 )
TBRAssign( 25 )
TBRAssign( 25.3 )
TBRAssign( 25.7 )
TBRAssign( "" )
TBRAssign( "az" )
TBRAssign( hb_SToD( "20070425" ) )
@@ -201,7 +205,11 @@ FUNCTION Main( cArg01, cArg02, cArg03, cArg04 )
TBCAssign( 0 )
TBCAssign( 1 )
TBCAssign( 3 )
TBCAssign( 3.3 )
TBCAssign( 3.7 )
TBCAssign( 25 )
TBCAssign( 25.3 )
TBCAssign( 25.7 )
TBCAssign( "" )
TBCAssign( "az" )
TBCAssign( hb_SToD( "20070425" ) )
@@ -477,8 +485,8 @@ PROCEDURE LogTBRVars( o, desc, xResult )
#else
FOR tmp := 1 TO Len( o )
#endif
/* [8] is binary data, not replicated in Harbour. */
IF tmp != 8
/* [14] is binary data, not replicated in Harbour. */
IF tmp != 14
FWrite( s_fhnd, " [ " + Str( tmp, 3 ) + " ] " + XToStrX( o[ tmp ] ) + hb_OSNewLine() )
ENDIF
NEXT