Skip to content
Snippets Groups Projects
  1. Dec 11, 2020
  2. Dec 10, 2020
  3. Dec 09, 2020
  4. Dec 03, 2020
  5. Dec 01, 2020
  6. Nov 20, 2020
  7. Nov 19, 2020
  8. Nov 18, 2020
  9. Nov 16, 2020
  10. Nov 12, 2020
  11. Nov 11, 2020
  12. Nov 06, 2020
  13. Nov 05, 2020
  14. Nov 04, 2020
    • Gábor Szalai's avatar
      Bug 568518 Raw decoder correction · 3bcd4575
      Gábor Szalai authored
      The RAW decoder incorrectly decodes the set with a record of type field if:
      - The record of field has a variant:  REPEATABLE(yes)
      - It is a "catch all unknonw IE" list
      
      The problem is that the "catch all unknonw IE" list field can consume all IEs
      
      Solution:
      If the record/set of field of the set has variant "REPEATABLE(yes)"
      decode 1 element of the field at a time.
      
      Change-Id: I274015ec7fe8194438a9a8d6e7b995bcba6367f4
      3bcd4575
  15. Nov 02, 2020
  16. Oct 28, 2020
  17. Oct 21, 2020
  18. Oct 20, 2020
  19. Oct 16, 2020
  20. Oct 14, 2020
  21. Oct 13, 2020
  22. Oct 06, 2020
  23. Oct 01, 2020
  24. Sep 17, 2020
  25. Sep 11, 2020
  26. Sep 09, 2020
  27. Sep 01, 2020
  28. Aug 18, 2020
  29. 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
  30. Aug 14, 2020
    • Gábor Szalai's avatar
      Remove leading zero warning from str2float compiler part (bug 566028) · bcab9cf8
      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: I0e29260f893874d4b34372cd064882bb51087260
      Signed-off-by: default avatarGabor Szalai <gabor.szalai@ericsson.com>
      bcab9cf8
  31. Aug 12, 2020
  32. Aug 11, 2020
  33. Aug 10, 2020
Loading