1. 25fff35 removing asan 64 for osx images with xcode older than 10 - see this build: https://travis-ci.org/onqtam/doctest/builds/417181981 by onqtam · 6 years ago
  2. 10c2018 removing support for xcode 6 and 7 - only 8+ is supported due to the support for thread_local - relates #4 - see this: https://stackoverflow.com/questions/28094794/why-does-apple-clang-disallow-c11-thread-local-when-official-clang-supports by onqtam · 6 years ago
  3. c9b4e1f added an example with concurrent threads doing assertions - relates #4 (currently ctest fails on it...) by onqtam · 6 years ago
  4. 4ca0078 last bit of thread-synchronization done (for the debug output window reporter for windows when attached to a VS debugger) - relates #4 by onqtam · 6 years ago
  5. 2151e3c removed support for GCC 4.7 and VS 2013 ... they have extensions for thread local storage (__thread and __declspec(thread) respectively) but it works only for POD types... relates #4 by onqtam · 6 years ago
  6. 224e167 all CI builds (VS 2013, GCC 4.7) should pass now! Also the other VS builds should pass - doing a normal ostringstream resetting... relates $4 by onqtam · 6 years ago
  7. f03cfd9 made all logging macros thread-safe (and also optimized stringification - no need to allocate streams anymore - reusing a single one) - relates #4 by onqtam · 6 years ago
  8. 09fd51d added xcode10 osx image - https://blog.travis-ci.com/2018-08-16-xcode-10-beta-is-now-available by onqtam · 6 years ago
  9. 7c606ea updating osx build matrix according to this: https://blog.travis-ci.com/2018-07-19-xcode9-4-default-announce by onqtam · 6 years ago
  10. 8bf6dc6 support for VS 15.8 by onqtam · 6 years ago
  11. b170581 docs... non-interesting change by onqtam · 6 years ago
  12. 81d496f calling asserts from different threads spawned from within a single test case is now safe! using the SUBCASE macro in multiple threads will remain a big NO. TODO: logging macros such as INFO() and CAPTURE()... relates #4 and also PR #117 which was a good starting point for this! by onqtam · 6 years ago
  13. 758d092 the last 0 as null usages are gone by onqtam · 6 years ago
  14. 4d87d56 moved to nullptr, removed c++98-compat warning suppressions for clang (also long-long and 0 as null for gcc/clang) by onqtam · 6 years ago
  15. eac6787 tiny changes by onqtam · 6 years ago
  16. 25bfda9 hopefully fixing builds... by onqtam · 6 years ago
  17. 917d79d fixing builds... relates #114 by onqtam · 6 years ago
  18. 8171c48 polished the feature for allowing the use of asserts outside of a testing context (also example and docs) - relates #114 by onqtam · 6 years ago
  19. 6b05c20 disabling output comparison for the playground project by onqtam · 6 years ago
  20. 1d68a13 - added the ability to call asserts outside of a testing context without recompiling! currently the fast asserts are optimized for runtime speed to the maximum but the other asserts are not. Sadly logging macros - like INFO() - aren't supported... yet! - closes #114 - the way to do it is to call setAsDefaultForAssertsOutOfTestCases() on a doctest::Context and optionally to register a custom handler with doctest::Context::setAssertHandler() by onqtam · 6 years ago
  21. 6439abc clearing some flags after each call to the test_case_end function when reentering for subcases by onqtam · 6 years ago
  22. d7360b1 fixing clang builds... by onqtam · 6 years ago
  23. b63d394 no clang 3.3/3.4... by onqtam · 6 years ago
  24. bfc4a01 trying to get clang 3.3 and 3.4 working on travis by onqtam · 6 years ago
  25. fd1a1ea adding back clang 3.3 and 3.4 to the build matrix by onqtam · 6 years ago
  26. fdb8fcc removing the coverage_maxout .cpp file from the coverage report since its been moved to another folder by onqtam · 6 years ago
  27. 3ac4c3f code coverage to the max! by onqtam · 6 years ago
  28. f931b08 removed duplicated function by onqtam · 6 years ago
  29. 1cb49f8 trying to get 2 more clangs builds to pass by onqtam · 6 years ago
  30. 5401630 a bit more cleanup by onqtam · 6 years ago
  31. 981c843 fixing clang builds by onqtam · 6 years ago
  32. 25568b1 bench scripts work for python 3.x - TODO: make it download catch header if not found! by onqtam · 6 years ago
  33. 355b829 compacted some code by onqtam · 6 years ago
  34. 086eb82 fixing builds by onqtam · 6 years ago
  35. 07e5363 compacted namespaces a bit by onqtam · 6 years ago
  36. 42b60db moved implementation details into an anonymous namespace (still inside of doctest but outside of detail - reason for this: not to have 3 namespaces nested into each other, downside: had to use detail in doctest (for convenience) - hope it doesn't break anywhere...) by onqtam · 6 years ago
  37. 3fe13ff fixing builds by onqtam · 6 years ago
  38. 35c9336 went... a LOT further: moved almost all implicitly generated inline special member functions from the fwd part and into impl - compile times dropped even further by some 10% for the header cost by onqtam · 6 years ago
  39. d6e8661 fixing static analysis issues by onqtam · 6 years ago
  40. 732287e this should fix the builds by onqtam · 6 years ago
  41. 54b5bb9 using gcc 8 on appveyor by onqtam · 6 years ago
  42. 2d364b9 moved a bunch of code out of fwd and into impl - should improve compile times (and was a bit easier thanks to c++11 "= default" ) by onqtam · 6 years ago
  43. 493c813 using auto and modern for loops - relates #137 by onqtam · 6 years ago
  44. 4317c82 lets see those builds clean! by onqtam · 6 years ago
  45. eb6f370 directly using override since VS 2010 and GCC 4.6 are dropped! relates #137 by onqtam · 6 years ago
  46. dcdb43c builds should pass now! no more Visual Studio 2010/2012 and Gcc 4.6 - relates #137 by onqtam · 6 years ago
  47. 0c764a7 lets see which compilers are able to build the following code in c++11 mode - here I'm using all features I'm interested in. Based on this I shall update the supported compilers matrix and CI builds... by onqtam · 6 years ago
  48. be46017 using c++11 variadic templates for the templated test cases! relates #137 and #38 by onqtam · 6 years ago
  49. 0cec5b1 further simplification of macros since we always have variadic macros now by onqtam · 6 years ago
  50. 35b94a8 some cleanup of the header by onqtam · 6 years ago
  51. 42fa9c4 damn clang-tidy... see this build for the errors: https://travis-ci.org/onqtam/doctest/jobs/385392164 by onqtam · 6 years ago
  52. 224f4f3 builds should pass... hopefully! returning the override detection - I don't want to rule out gcc 4.6... by onqtam · 6 years ago
  53. 79cfe03 using variadic macros - more code removed! thanks C++11! by onqtam · 6 years ago
  54. ef508e8 removed a bunch of code related to C++98 - only variadic macros are left! by onqtam · 6 years ago
  55. d43ae6d updated travis build matrix - trying to get a package for some headers for when c++0x is enabled... weird! by onqtam · 6 years ago
  56. cd891f2 assuming that long long is present by default - C++11 yey! by onqtam · 6 years ago
  57. 1b47536 small docs update by onqtam · 6 years ago
  58. 8b8f240 initial commit for the move to C++11 for doctest 2.0 - no code changes yet! relates #137 by onqtam · 6 years ago
  59. 3474b1b fixed a static analysis warning and updated roadmap by onqtam · 6 years ago
  60. 2d16073 initial version of a reporter system! inherit from the IReporter class and register it with doctest::registerReporter() by onqtam · 6 years ago
  61. 73e7beb another tiny change - reusing a macro by onqtam · 6 years ago
  62. 68f4eba compacted the different assert logging functions into a single one by onqtam · 6 years ago
  63. 2ac76d5 more cleanup of code - defining decorator structs with a macro and refactored the assert logging functions to use a result builder object as a single argument - will be later used by the reporters by onqtam · 6 years ago
  64. e68aa31 Suppress compiler warning on MinGW (#134) - fixes #133 by AMS21 · 6 years ago
  65. cd1d747 changelog for version 1.2.9 by onqtam · 6 years ago 1.2.9
  66. 68681e6 version 1.2.9 by onqtam · 6 years ago
  67. 8732e05 forgot this in the last commit... by onqtam · 6 years ago
  68. 5b9f24a fixing cland-tidy errors by onqtam · 6 years ago
  69. 1655b24 regenerated test output - relates #123 by onqtam · 6 years ago
  70. 7907692 fixed #123 - changed the output style in the console - gcc/clang output with :n: around line numbers and other compilers output with (n) - there is also a documented option for this. Also changed lots of code - thank god I moved to streams! by onqtam · 6 years ago
  71. 26d5d65 trying to get gcc 6/7/8 working on the latest osx image by onqtam · 6 years ago
  72. 0a2554a back to the old version of oclint... aint that old anyway by onqtam · 6 years ago
  73. 066fa00 a bit more cleanup of (hopefully) unnecessary pragmas by onqtam · 6 years ago
  74. bb2254a hopefully fixing gcc 4.4/4.6 builds by onqtam · 6 years ago
  75. 8c3352f moving back to clang-tidy 4 because the last build just stopped at some point... https://travis-ci.org/onqtam/doctest/jobs/376739957 by onqtam · 6 years ago
  76. ba6808f trying to: by onqtam · 6 years ago
  77. 051def3 trying to get a few more builds to pass - enabling privileges for those builds - see this issue for more details: https://github.com/travis-ci/travis-ci/issues/9033 by onqtam · 6 years ago
  78. 86943ca hopefully fixing a static analysis warning by onqtam · 6 years ago
  79. 7fda2ec Exclude Intel from GCC compiler check (#132) - fixes #128 by smcallis · 6 years ago
  80. 6b2c99f added... the only new warning option for GCC 8 that is not in Wall/Wextra by onqtam · 6 years ago
  81. 3eaf687 actually re-enabled the printing in the output window of visual studio - I might release a minor version (1.2.9) with the current changes before 1.3.0 (a big one - with reporters, matchers and thread safety!) by onqtam · 6 years ago
  82. 52b826a some cleanup: by onqtam · 6 years ago
  83. 88d4031 fixed builds - temporarily disabled output from asserts in the output window of IDEs - will re-enable when reporters are implemented by onqtam · 6 years ago
  84. eda80a1 initial version of moving to streams for the reporting - almost 200 lines shorter! by onqtam · 6 years ago
  85. 73a913b updated roadmap by onqtam · 6 years ago
  86. cb23394 doctest builds with Visual Studio 2017 (15.7.0) - disabling a spectre related warning by onqtam · 6 years ago
  87. f2d9152 added a few links in docs by onqtam · 6 years ago
  88. e5f8b67 added gcc 8 to the build matrix - allowed to fail for now by onqtam · 7 years ago
  89. 87183de fixing gcc 4.4 builds - relates #118 by onqtam · 7 years ago
  90. e12690c added Dean Bodenham to the list of donators! by onqtam · 7 years ago
  91. 41c08a5 fixed issue #118 - silencing the problematic warning. the char buffer is already annotated to have the proper alignment - this is probably a misdiagnostic by the compiler and should be safe to silence by onqtam · 7 years ago
  92. 3ae0631 small comments by onqtam · 7 years ago
  93. bf2e757 fixed issue #129 by onqtam · 7 years ago
  94. c5b6f4d tiny cleanup by onqtam · 7 years ago
  95. f253bc0 relates #121 by onqtam · 7 years ago
  96. a8f31ef Fix deprecated-declarations warning with GCC-8.0 (#131) by AMS21 · 7 years ago
  97. 3a3bc20 added xcode 9.3 to build matrix by onqtam · 7 years ago
  98. fec6e4a changelog for 1.2.8 by onqtam · 7 years ago 1.2.8
  99. c168e36 version 1.2.8 by onqtam · 7 years ago
  100. f9c6ffc fixed issue #118 by onqtam · 7 years ago