testdebug.pp 847 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 2003 by the Free Pascal development team
  5. Interactive test for debugserver.
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. program testdebug;
  13. uses dbugintf;
  14. Var
  15. S : String;
  16. begin
  17. Repeat
  18. Writeln('Enter message to send to debug server (STOP exits): ');
  19. Write('> ');
  20. Readln(S);
  21. SendDebugEx(S,dlError);
  22. Until (S='STOP');
  23. end.
  24. {
  25. $Log$
  26. Revision 1.1 2003-01-02 14:44:29 michael
  27. + Initial implementation
  28. }