1. 23 2月, 2018 1 次提交
    • F
      - Removed member variable @test_flag · 0937bf72
      Fabian Zahn 提交于
      - Fixed stdout output if fixture is active
      - Refactored the state manipulation of @test_suite and moved it completely into test_suite_verify()
      0937bf72
  2. 15 2月, 2018 1 次提交
  3. 12 2月, 2018 1 次提交
  4. 11 2月, 2018 5 次提交
  5. 30 1月, 2018 1 次提交
    • F
      Some minor changes · 07602308
      Fabian Zahn 提交于
      - String split now works correctly for windows and unix (cross platform)
      - Removed unnecessary whitespaces in the xml output (beautifies the output)
      - Added support for TEST_IGNORE() (without message)
      07602308
  6. 06 12月, 2017 1 次提交
  7. 27 11月, 2017 1 次提交
  8. 23 11月, 2017 1 次提交
  9. 20 11月, 2017 2 次提交
  10. 15 11月, 2017 1 次提交
  11. 04 11月, 2017 1 次提交
  12. 01 11月, 2017 1 次提交
  13. 31 10月, 2017 2 次提交
  14. 25 10月, 2017 1 次提交
  15. 24 10月, 2017 1 次提交
  16. 20 10月, 2017 1 次提交
  17. 09 10月, 2017 2 次提交
    • J
      Make weak symbol usage more portable: · df78aade
      John Lindgren 提交于
      - Enable support for Green Hills Software compiler
      - Define weak implementations only once except on Windows
      df78aade
    • 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
  18. 22 9月, 2017 1 次提交
  19. 21 9月, 2017 3 次提交
  20. 14 9月, 2017 2 次提交
    • J
      Update documentation. · 1381a1a4
      John Lindgren 提交于
      1381a1a4
    • 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
  21. 13 9月, 2017 1 次提交
  22. 12 9月, 2017 2 次提交
  23. 11 9月, 2017 2 次提交
  24. 09 9月, 2017 2 次提交
  25. 26 8月, 2017 3 次提交