1. 11 3月, 2021 1 次提交
  2. 09 9月, 2020 1 次提交
  3. 30 10月, 2019 1 次提交
  4. 29 10月, 2019 2 次提交
  5. 25 10月, 2019 3 次提交
  6. 23 10月, 2019 1 次提交
  7. 14 9月, 2019 1 次提交
    • J
      Fix "rake scripts" when running on Windows. · 9578a382
      John Lindgren 提交于
      cmd.exe does not recognize backslash as an escape character,
      leading to errors like the following:
      
          error: stray '\' in program
          note: in definition of macro 'UNITY_OUTPUT_CHAR_HEADER_DECLARATION'
      
      It does, however, recognize double quotes, so we can use those as
      a portable method of escaping special characters on both Windows
      and UNIX.
      9578a382
  8. 13 8月, 2019 1 次提交
  9. 06 7月, 2019 3 次提交
  10. 12 5月, 2019 1 次提交
  11. 21 4月, 2019 1 次提交
  12. 15 4月, 2019 1 次提交
  13. 13 4月, 2019 1 次提交
  14. 01 2月, 2019 1 次提交
    • E
      Improvements to the execution time feature · 076f0fff
      elliot 提交于
      - Running time macros have been made more portable, previously it was not
        possible to override all macros
      - Running time macros will be executed by default test runner, and auto test
        runners
      - Adds a default execution time implementation for unix. (Previous default
        implementation only worked on Windows)
      - For embedded platforms there is a simple method of getting a default
        implementation by defining a single macro UNITY_CLOCK_MS()
      - Removed need for UNITY_EXEC_TIME_RESET. This was not being used for the default
        implementations, if anything ever did need reset-like functionality it could
        simply be wrapped up with the start or stop macros for that platform
      076f0fff
  15. 11 12月, 2018 1 次提交
  16. 29 11月, 2018 1 次提交
  17. 19 2月, 2018 3 次提交
  18. 18 2月, 2018 5 次提交
  19. 08 11月, 2017 4 次提交
  20. 22 9月, 2017 1 次提交
  21. 10 9月, 2017 1 次提交
  22. 26 8月, 2017 2 次提交
    • J
      Fix test link error. · dbdd168e
      John Lindgren 提交于
      dbdd168e
    • J
      Rewrite UnityPrintFloat to match printf("%.6g"). · 0e7eb545
      John Lindgren 提交于
      The existing implementation was not very good:
       - It printed all very small values as "0.000000..."
       - It did not distinguish positive and negative zero
       - In some cases it printed extra garbage digits for single-precision values
         (e.g. 3.9e+30 was printed as 3.90000013+30)
      
      Tests have been updated to check that we now match printf("%.6g") for
      1,000,000 randomly chosen values, except for rounding of the 6th digit.
      0e7eb545
  23. 04 8月, 2017 1 次提交
  24. 02 8月, 2017 1 次提交
  25. 14 5月, 2017 1 次提交