Skip to content
Snippets Groups Projects
  1. Oct 20, 2020
  2. Oct 06, 2020
  3. Oct 05, 2020
  4. Oct 02, 2020
  5. Oct 01, 2020
  6. Sep 15, 2020
  7. Sep 09, 2020
  8. Aug 30, 2020
  9. Aug 18, 2020
  10. Aug 17, 2020
    • Gábor Szalai's avatar
      Reduce the float printout precision (bug 566118) · 77bdf234
      Gábor Szalai authored
      
      The 17 digit precision was too precise for the float.
      The 17 significant digit ensured that the parsed back value is
      the same as the original, but the currently used print out function
      introduced rounding errors, which renders the last digit useless.
      
      Further development and experiment is needed, because neither functionality
      provided by the c++ library prints the float as expected by the TTCN standard.
      
      Change-Id: I328e8ed423c7d96f2ee46e5453e090a1c3fda6a8
      Signed-off-by: default avatarGabor Szalai <gabor.szalai@ericsson.com>
      77bdf234
    • Gábor Szalai's avatar
      ttcn2str correction (bug 566118 & 566029) · ee2516df
      Gábor Szalai authored
      
      The number of the significant digits used during the code generation
      is increased to 17
      
      The string representation of the float generated by the ttcn2str is
      corrected: no leading zero in exponent, 17 significant digits
      
      Change-Id: Ib49b878a78c87c1a8fee55b06c9b713023e90797
      Signed-off-by: default avatarGabor Szalai <gabor.szalai@ericsson.com>
      ee2516df
  11. Aug 13, 2020
    • Gábor Szalai's avatar
      Remove leading zero warning from str2float (bug 566028) · 06fb83ab
      Gábor Szalai authored
      
      The standard explicitly allow the leading zero for str2float
      Leading zero warning is not needed as it is allowed.
      
      C.1.29  Character string to float
      str2float(in charstring invalue) return float This function
      converts a charstring comprising a number into a float value.
      The format of the number in the charstring shall follow rules
      in clause 6.1.0, items a) or b) with the following exceptions:
      
      leading zeros are allowed;
      
      EXAMPLE:
      
      str2float("12345.6") // is the same as str2float("123.456E+02")
      
      Change-Id: Ia3a81017b234dae493cd33ccc4ce3ea124727be2
      Signed-off-by: default avatarGabor Szalai <gabor.szalai@ericsson.com>
      06fb83ab
  12. Jul 23, 2020
  13. Jul 10, 2020
  14. Jul 09, 2020
  15. Jul 06, 2020
  16. Jun 17, 2020
  17. Jun 16, 2020
  18. Jun 15, 2020
  19. Jun 11, 2020
  20. May 26, 2020
  21. May 22, 2020
  22. May 19, 2020
  23. May 18, 2020
  24. May 12, 2020
  25. May 05, 2020
  26. Apr 28, 2020
  27. Apr 23, 2020
  28. Mar 18, 2020
    • Gábor Szalai's avatar
      Update GCC version check · af1f1db9
      Gábor Szalai authored
      At the beginning the GCC (and clang) used the versioning scheme:
      <major>.<minor>.<patch>
      
      The <patch> part is ignored by the version check as the patch releases are
      compatible.
      
      Both the GCC and the Clang dropped the minor releases at the release of GCC5 & Clang5
      They garantee the API & ABI compatibility within a major version, so only the
      major version should be taken account.
      
      Change-Id: I73447b7f994b0b9eb5c536a49d4fe537bbd30969
      af1f1db9
  29. Mar 10, 2020
  30. Mar 09, 2020
  31. Mar 05, 2020
  32. Feb 24, 2020
  33. Feb 10, 2020
  34. Jan 26, 2020
  35. Dec 18, 2019
  36. Dec 09, 2019
Loading