1. 29 3月, 2017 5 次提交
  2. 28 3月, 2017 3 次提交
  3. 27 3月, 2017 5 次提交
  4. 22 3月, 2017 5 次提交
  5. 21 3月, 2017 7 次提交
  6. 19 3月, 2017 1 次提交
  7. 15 3月, 2017 1 次提交
  8. 14 3月, 2017 2 次提交
  9. 02 3月, 2017 2 次提交
  10. 01 3月, 2017 2 次提交
    • M
      Merge pull request #266 from FSMaxB/fix-double-promotion · b5da224f
      Mark VanderVoord 提交于
      Fix warnings with -Wdouble-promotion
      b5da224f
    • M
      Fix warnings with -Wdouble-promotion · 1bf22d39
      Max Bruckner 提交于
      This fixes compiler warnings that clang produces with the
      -Wdouble-promotion compiler option.
      
      This only happens if double precision floating point numbers are
      enabled.
      
      The implicit double promotion occurs because numbers of type UNITY_FLOAT
      are passed into UnityPrintFloat, which expects const UNITY_DOUBLE.
      
      This commit fixes it by explicitly casting to UNITY_DOUBLE.
      1bf22d39
  11. 15 2月, 2017 2 次提交
  12. 14 2月, 2017 3 次提交
  13. 08 2月, 2017 1 次提交
    • J
      Enhance parseOutput.rb to support Unity fixture output · 4dc04d39
      Jeremy Hannon 提交于
      unity.h and unity_fixture.h output their results in different string formats. This parseOutput.rb script already parsed the unity.h output to generate a JUnit-style XML summary which could be parsed by CI servers to graph the history of test pass/fail results. The changes in this commit allow the script to also handle the output format of unity_fixture.h which utilizes groups to add a layer of organization for tests.
      
      The changes in this commit were authored by Justin Seifi, my coworker, who has approved of me submitting his work back to this open source framework repo.
      4dc04d39
  14. 31 1月, 2017 1 次提交