teststr.pp 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. $Id$
  3. This file is part of the Free Pascal test suite.
  4. Copyright (c) 2002 by the Free Pascal development team.
  5. This unit stores the strings used by
  6. dotest program, so that they can be also used by
  7. figest program.
  8. See the file COPYING.FPC, included in this distribution,
  9. for details about the copyright.
  10. This program is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. **********************************************************************}
  14. unit teststr;
  15. interface
  16. const
  17. failed_to_compile = 'Failed to compile ';
  18. success_compilation_failed = 'Success, compilation failed ';
  19. failed_compilation_successful = 'Failed, compilation successful ';
  20. successfully_compiled = 'Successfully compiled ';
  21. failed_to_run = 'Failed to run ';
  22. successfully_run = 'Successfully run ';
  23. skipping_graph_test = 'Skipping test because it uses graph ';
  24. skipping_interactive_test = 'Skipping test because it is interactive ';
  25. skipping_known_bug = 'Skipping test because it is a known bug ';
  26. skipping_compiler_version_too_low = 'Skipping test because compiler version too low ';
  27. skipping_other_cpu = 'Skipping test because for other cpu ';
  28. skipping_other_target = 'Skipping test because for other target ';
  29. skipping_run_unit = 'Skipping test run because it is a unit ';
  30. skipping_run_test = 'Skipping run test ';
  31. known_problem = ' known problem: ';
  32. line_separation = '>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>';
  33. ResLogfile : string[32] = 'log';
  34. implementation
  35. end.
  36. {
  37. $Log$
  38. Revision 1.4 2002-12-24 21:47:49 peter
  39. * NeedTarget, SkipTarget, SkipCPU added
  40. * Retrieve compiler info in a single call for 1.1 compiler
  41. Revision 1.3 2002/11/18 16:42:43 pierre
  42. + KNOWNRUNERROR added
  43. Revision 1.2 2002/11/13 15:26:24 pierre
  44. + digest program added
  45. }