Skip to content
Snippets Groups Projects
  1. Jul 21, 2021
  2. Jul 15, 2021
  3. Jul 14, 2021
    • Gábor Szalai's avatar
      Hexstring RAW fix (#issue 557) · 8fd5ec92
      Gábor Szalai authored
      
      The RAW encoding of hextring with
      - FIELDORDER(msb)
      - HEXORDER(high)
      - Field starts on half octet
      fails
      
      The hexstring starting of half octet is handled specially as only the hex digits in the whole octets should be swapped.
      Because the buffer is filled diferently in the case of different FIELDORDER, the hex digit swapping should be adopted to the FIELDORDER
      
      Signed-off-by: default avatarGabor Szalai <gabor.szalai@ericsson.com>
      8fd5ec92
  4. Jul 06, 2021
  5. Jun 16, 2021
  6. Jun 07, 2021
  7. May 18, 2021
  8. Apr 29, 2021
  9. Mar 31, 2021
  10. Mar 11, 2021
  11. Mar 10, 2021
  12. Mar 04, 2021
  13. Jan 19, 2021
  14. Jan 04, 2021
  15. Dec 11, 2020
  16. Nov 12, 2020
  17. Nov 02, 2020
  18. Oct 20, 2020
  19. Oct 06, 2020
  20. Oct 05, 2020
  21. Oct 02, 2020
  22. Oct 01, 2020
  23. Sep 15, 2020
  24. Sep 09, 2020
  25. Aug 30, 2020
  26. Aug 18, 2020
  27. 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
  28. 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
  29. Jul 23, 2020
  30. Jul 10, 2020
  31. Jul 09, 2020
  32. Jul 06, 2020
  33. Jun 17, 2020
  34. Jun 16, 2020
  35. Jun 15, 2020
  36. Jun 11, 2020
  37. May 26, 2020
Loading