From 0cb07974e40a8fd0be777452db4e6d33c0eae040 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Wed, 19 Apr 2000 09:35:17 +0000 Subject: [PATCH] 20000419-11:36 GMT+1 Victor Szakats --- harbour/ChangeLog | 4 ++-- harbour/tests/test.prg | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 harbour/tests/test.prg 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