/test/language/unclassified/test_platform2.e

http://github.com/tybor/Liberty · Specman e · 60 lines · 31 code · 6 blank · 23 comment · 1 complexity · 870e591f6a3abe98f4ceb264606201d7 MD5 · raw file

  1. -- This file is part of SmartEiffel The GNU Eiffel Compiler Tools and Libraries.
  2. -- See the Copyright notice at the end of this file.
  3. --
  4. class TEST_PLATFORM2
  5. insert
  6. ANY
  7. PLATFORM
  8. create {}
  9. make
  10. feature {ANY}
  11. make
  12. do
  13. assert(Character_bits >= 8)
  14. assert(Minimum_character_code = 0)
  15. assert(Minimum_character_code = '%U'.code)
  16. assert(Maximum_character_code = 255)
  17. assert(Boolean_bits >= 8)
  18. assert(Integer_bits >= 32)
  19. assert(Real_bits >= 64)
  20. -- assert(Double_bits >= Real_bits);
  21. assert(Pointer_bits >= 24)
  22. assert(Maximum_integer >= 32768)
  23. end
  24. assert (b: BOOLEAN)
  25. do
  26. cpt := cpt + 1
  27. if not b then
  28. std_output.put_string("TEST_PLATFORM2: ERROR Test # ")
  29. std_output.put_integer(cpt)
  30. std_output.put_string("%N")
  31. else
  32. -- std_output.put_string("Yes%N");
  33. end
  34. end
  35. cpt: INTEGER
  36. end -- class TEST_PLATFORM2
  37. --
  38. -- ------------------------------------------------------------------------------------------------------------------------------
  39. -- Copyright notice below. Please read.
  40. --
  41. -- SmartEiffel is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License,
  42. -- as published by the Free Software Foundation; either version 2, or (at your option) any later version.
  43. -- SmartEiffel is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY; without even the implied warranty
  44. -- of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have
  45. -- received a copy of the GNU General Public License along with SmartEiffel; see the file COPYING. If not, write to the Free
  46. -- Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
  47. --
  48. -- Copyright(C) 1994-2002: INRIA - LORIA (INRIA Lorraine) - ESIAL U.H.P. - University of Nancy 1 - FRANCE
  49. -- Copyright(C) 2003-2006: INRIA - LORIA (INRIA Lorraine) - I.U.T. Charlemagne - University of Nancy 2 - FRANCE
  50. --
  51. -- Authors: Dominique COLNET, Philippe RIBET, Cyril ADRIAN, Vincent CROIZIER, Frederic MERIZEN
  52. --
  53. -- http://SmartEiffel.loria.fr - SmartEiffel@loria.fr
  54. -- ------------------------------------------------------------------------------------------------------------------------------