1. 29 10月, 2019 1 次提交
  2. 25 10月, 2019 1 次提交
  3. 11 9月, 2019 1 次提交
  4. 09 7月, 2019 1 次提交
  5. 06 7月, 2019 3 次提交
  6. 04 7月, 2019 1 次提交
  7. 12 5月, 2019 1 次提交
  8. 21 4月, 2019 1 次提交
  9. 14 4月, 2019 1 次提交
  10. 08 4月, 2019 1 次提交
  11. 07 4月, 2019 1 次提交
  12. 12 3月, 2019 1 次提交
  13. 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
  14. 31 1月, 2019 1 次提交
  15. 25 1月, 2019 3 次提交
  16. 29 11月, 2018 2 次提交
  17. 31 10月, 2018 2 次提交
  18. 28 10月, 2018 1 次提交
  19. 27 10月, 2018 1 次提交
  20. 12 9月, 2018 1 次提交
  21. 18 7月, 2018 1 次提交
    • X
      Flush unity output before a potential longjmp · 2c5d09bf
      Xenoamor 提交于
      Flush the unity stdout buffer before calling TEST_ABORT().
      This is because if TEST_PROTECT() has not previously been called this will cause a segmentation fault and the stdout buffer will fail to print
      
      Although the segmentation fault will still occur, the error that caused it will at least be displayed
      2c5d09bf
  22. 11 2月, 2018 1 次提交
  23. 23 11月, 2017 1 次提交
  24. 08 11月, 2017 4 次提交
  25. 01 11月, 2017 1 次提交
  26. 24 10月, 2017 1 次提交
  27. 09 10月, 2017 1 次提交
    • J
      Fix link errors with MinGW. · a7e8797e
      John Lindgren 提交于
      MinGW supports a limited form of weak symbols, with the restriction
      that weak/default implementations need to be defined in the same
      translation unit they are called from.  Strong/overriding symbols
      may of course be specified in a different translation unit.
      a7e8797e
  28. 21 9月, 2017 1 次提交
  29. 14 9月, 2017 1 次提交
    • J
      Allow suiteSetUp() and suiteTearDown() to be provided as normal C functions. · 2593c31b
      John Lindgren 提交于
      This is simpler and more flexible than embedding C code in the Ruby options
      (:suite_setup and :suite_teardown).  However, support for :suite_setup and
      :suite_teardown is kept for backwards compatibility.
      
      Several configurations are possible:
      1. :suite_setup and :suite_teardown options provided and used.
      2. :suite_setup and :suite_teardown options not provided (nil):
        2a. Weak symbols not supported; suiteSetUp() and suiteTearDown() are not called.
            It would be simpler to make user-provided functions mandatory in this case,
            but it could break some pre-existing test suites.
        2b. Weak symbols are supported and the stub implementations of suiteSetUp() and
            suiteTearDown() are called if there are no user-provided functions.
        2c. Weak symbols are supported but overridden by user-provided suiteSetUp() and
            suiteTearDown() functions.
      2593c31b
  30. 11 9月, 2017 1 次提交
  31. 10 9月, 2017 1 次提交