diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 2334e27daf..1a46753602 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,6 +1,6 @@ 20000419-11:36 GMT+1 Victor Szakats - - tests/test.prg - ! Removed file added without any ChangeLog info, and also + * tests/test.prg + ! Restored the file changed without any ChangeLog info, and also breaking the build process for GNU-make. 20000419-10:37 GMT+1 Victor Szakats diff --git a/harbour/tests/test.prg b/harbour/tests/test.prg new file mode 100644 index 0000000000..7c0239a76f --- /dev/null +++ b/harbour/tests/test.prg @@ -0,0 +1,18 @@ +// +// $Id$ +// + +// + +procedure main() + + local s := " " + chr(0) + " mab " + chr(0) + " " + + StrDump( s ) + QOut( s ) + + qout( '"' + ltrim(s) + '"' ) + qout( '"' + rtrim(s) + '"' ) + qout( '"' + alltrim(s) + '"' ) + +return