teststr.pp 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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_compiler_version_too_high = 'Skipping test because compiler version too high ';
  28. skipping_other_cpu = 'Skipping test because for other cpu ';
  29. skipping_other_target = 'Skipping test because for other target ';
  30. skipping_run_unit = 'Skipping test run because it is a unit ';
  31. skipping_run_test = 'Skipping run test ';
  32. known_problem = ' known problem: ';
  33. line_separation = '>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>';
  34. ResLogfile : string[32] = 'log';
  35. implementation
  36. end.
  37. {
  38. $Log$
  39. Revision 1.5 2003-10-13 14:19:02 peter
  40. * digest updated for max version limit
  41. Revision 1.4 2002/12/24 21:47:49 peter
  42. * NeedTarget, SkipTarget, SkipCPU added
  43. * Retrieve compiler info in a single call for 1.1 compiler
  44. Revision 1.3 2002/11/18 16:42:43 pierre
  45. + KNOWNRUNERROR added
  46. Revision 1.2 2002/11/13 15:26:24 pierre
  47. + digest program added
  48. }