Tiago Macarios 
							
						 
					 
					
						
						
							
						
						0b993d7436 
					 
					
						
						
							
							Fix catch exception by reference  
						
						 
						
						... 
						
						
						
						When compiling our codebase with clang we were getting the following
error:
GSL/tests/algorithm_tests.cpp:198:58: warning: catch handler catches by
value; should catch by reference instead
[misc-throw-by-value-catch-by-reference]
    CHECK_THROWS_AS(copy(src_span_dyn, dst_span_static), fail_fast);
                                                             ^
Looking at the catch source code exceptions were being caught by value.
One could have it designed so that users might say:
CHECK_THROWS_AS(copy(src_span_dyn, dst_span_static), fail_fast&);
But I don't think this is the intent and looking at the Catch tests
itself looks like this macro does not expect the reference:
    REQUIRE_THROWS_AS( thisThrows(), std::domain_error );
    CHECK_THROWS_AS( thisDoesntThrow(), std::domain_error );
This commit makes Catch catch exceptions by reference instead of by
value. 
						
						
							
						
					 
					
						2017-10-24 20:58:23 -07:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Clare Macrae 
							
						 
					 
					
						
						
							
						
						93b3d2cb8f 
					 
					
						
						
							
							Fix very minor typo  
						
						 
						
						... 
						
						
						
						it's -> its 
						
						
							
						
					 
					
						2017-10-24 20:00:27 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Pfiffikus 
							
						 
					 
					
						
						
							
						
						a90473df28 
					 
					
						
						
							
							Update build-systems.md  
						
						 
						
						... 
						
						
						
						typo correction 
						
						
							
						
					 
					
						2017-10-24 19:59:59 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Sebastian Grottel 
							
						 
					 
					
						
						
							
						
						c9d9699ca8 
					 
					
						
						
							
							adds flushes to the output stream of teamcity reporter, making the test output more responsive.  
						
						 
						
						
						
						
							
						
					 
					
						2017-10-17 16:42:05 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Sebastian Grottel 
							
						 
					 
					
						
						
							
						
						296955c437 
					 
					
						
						
							
							RandomNumberGenerator::result_type should be unsigned (#1050 )  
						
						 
						
						... 
						
						
						
						`result_type` must be unsigned:
http://en.cppreference.com/w/cpp/concept/UniformRandomBitGenerator 
Using a signed type causes an infinite loop working with MS Visual Studio 2017, targetting: v140, WindowsTargetPlatformVersion 10.0.15063.0, Debug, x64 
						
						
							
						
					 
					
						2017-10-15 18:30:40 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								dvirtz 
							
						 
					 
					
						
						
							
						
						664cbf702c 
					 
					
						
						
							
							added PARSE_CATCH_TESTS_ADD_TO_CONFIGURE_DEPENDS option  
						
						 
						
						
						
						
							
						
					 
					
						2017-10-15 17:58:39 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Martin Hořeňovský 
							
						 
					 
					
						
						
							
						
						fb6700df54 
					 
					
						
						
							
							Fix documentation crosslink in configuration.md  
						
						 
						
						
						
						
							
						
					 
					
						2017-10-14 08:36:44 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Phil Nash 
							
						 
					 
					
						
						
							
						
						da6c2a6914 
					 
					
						
						
							
							Fixed expansion of _FALSE binary expression  
						
						 
						
						... 
						
						
						
						- see #1051  
						
						
							
						
					 
					
						2017-10-13 19:44:20 +01:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Dmitry Kozhevnikov 
							
						 
					 
					
						
						
							
						
						9c07718b5f 
					 
					
						
						
							
							Update handling of __JETBRAINS_IDE__ macro  
						
						 
						
						... 
						
						
						
						1. Use it to conditionally define CATCH_INTERNAL_CONFIG_COUNTER, not
   CATCH_CONFIG_COUNTER, as __JETBRAINS_IDE__ is similar to
   compiler-provided macros, not to user-provided ones.
2. Since __COUNTER__ will work starting with CLion 2017.3, use it
   when possible (and hopefully remove this check altogether
   at some point). 
						
						
							
						
					 
					
						2017-09-07 18:00:04 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								solvingj 
							
						 
					 
					
						
						
							
						
						5ca44b6872 
					 
					
						
						
							
							Minor - added header-only flag in conan  
						
						 
						
						... 
						
						
						
						See header-only guidelines: 
http://conanio.readthedocs.io/en/latest/howtos/header_only.html?highlight=header%20only 
Its borderline cosmetic, but it does have a purpose. 
						
						
							
						
					 
					
						2017-08-28 12:18:54 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Sam Bristow 
							
						 
					 
					
						
						
							
						
						a04bd6d436 
					 
					
						
						
							
							Remove duplicate CLI option  
						
						 
						
						... 
						
						
						
						The "use-colour" option was accidentally duplicated as part of commit
feaf355  (Implemented libidentify support). 
						
						
							
						
					 
					
						2017-08-28 12:16:23 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Martin Hořeňovský 
							
						 
					 
					
						
						
							
						
						784f6dfb34 
					 
					
						
						
							
							Fix updateVcpkgPackage  
						
						 
						
						
						
						
							
						
					 
					
						2017-08-27 11:43:55 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Martin Hořeňovský 
							
						 
					 
					
						
						
							
						
						7818e2666d 
					 
					
						
						
							
							v1.10.0  
						
						 
						
						
						
						
							
  v1.10.0
 
						
					 
					
						2017-08-26 15:34:18 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Martin Hořeňovský 
							
						 
					 
					
						
						
							
						
						cd30dd1a70 
					 
					
						
						
							
							Workaround raw string literal bug in VS2017  
						
						 
						
						
						
						
							
						
					 
					
						2017-08-26 15:14:27 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Phil Nash 
							
						 
					 
					
						
						
							
						
						8e8c0c1675 
					 
					
						
						
							
							Tweaked how failedButOk assertions are recorded  
						
						 
						
						... 
						
						
						
						- fixes issue where sections in !shouldfail or !mayfail test cases that have failing assertions where marked as failed instead of failedButOk 
						
						
							
						
					 
					
						2017-08-25 11:37:49 +01:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Phil Nash 
							
						 
					 
					
						
						
							
						
						b6e7c9bd7a 
					 
					
						
						
							
							Specialise removeConst for nullptr  
						
						 
						
						
						
						
							
						
					 
					
						2017-08-24 23:07:44 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Phil Nash 
							
						 
					 
					
						
						
							
						
						180d9242f5 
					 
					
						
						
							
							Suppress more signed/ unsigned mismatches during Evaluator calls on MSVC  
						
						 
						
						
						
						
							
						
					 
					
						2017-08-24 23:07:03 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Phil Nash 
							
						 
					 
					
						
						
							
						
						b7bd52cc98 
					 
					
						
						
							
							Cherry-picked "evaluate" refactoring from dev-modernize branch  
						
						 
						
						... 
						
						
						
						- fixed up NULL comparisons to allow for NULL being a long
- should address #981  
						
						
							
						
					 
					
						2017-08-24 23:07:03 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Martin Hořeňovský 
							
						 
					 
					
						
						
							
						
						b07a2bdf87 
					 
					
						
						
							
							Refactor release scripts, automatically update Wandbox on release  
						
						 
						
						
						
						
							
						
					 
					
						2017-08-24 21:59:06 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Martin Hořeňovský 
							
						 
					 
					
						
						
							
						
						c03e8fce92 
					 
					
						
						
							
							Explicitly ignore return value of getchar  
						
						 
						
						... 
						
						
						
						This silences MSVC warning about ignored return value 
						
						
							
						
					 
					
						2017-08-22 22:06:37 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Phil Nash 
							
						 
					 
					
						
						
							
						
						27640a5a96 
					 
					
						
						
							
							Added Clara and TextFlowCpp to open source users  
						
						 
						
						
						
						
							
						
					 
					
						2017-08-17 10:49:56 +01:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Phil Nash 
							
						 
					 
					
						
						
							
						
						dd3867bbcd 
					 
					
						
						
							
							Create CODE_OF_CONDUCT.md  
						
						 
						
						
						
						
							
						
					 
					
						2017-08-17 07:45:12 +01:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Phil Nash 
							
						 
					 
					
						
						
							
						
						387f8d254d 
					 
					
						
						
							
							Removed unnecessary single quotes  
						
						 
						
						
						
						
							
						
					 
					
						2017-08-15 19:41:46 +01:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Phil Nash 
							
						 
					 
					
						
						
							
						
						c65eccd68e 
					 
					
						
						
							
							Added --libidentify and --wait-for-keypress to docs  
						
						 
						
						
						
						
							
						
					 
					
						2017-08-15 19:39:38 +01:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Phil Nash 
							
						 
					 
					
						
						
							
						
						61c5675c11 
					 
					
						
						
							
							Removed inadvertent use of auto merged from dev-modernise  
						
						 
						
						
						
						
							
						
					 
					
						2017-08-15 19:34:10 +01:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Phil Nash 
							
						 
					 
					
						
						
							
						
						70e4af9d44 
					 
					
						
						
							
							Implemented wait-for-keypress option  
						
						 
						
						
						
						
							
						
					 
					
						2017-08-15 14:12:11 +01:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Monocasual 
							
						 
					 
					
						
						
							
						
						8f41bdb92d 
					 
					
						
						
							
							Add open-source user  
						
						 
						
						
						
						
							
						
					 
					
						2017-08-13 17:55:50 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Phil Nash 
							
						 
					 
					
						
						
							
						
						7fa5d9ca94 
					 
					
						
						
							
							Removed redundant processName argument from libIdentify call  
						
						 
						
						
						
						
							
						
					 
					
						2017-08-11 22:03:09 +01:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Phil Nash 
							
						 
					 
					
						
						
							
						
						feaf355489 
					 
					
						
						
							
							Implemented libidentify support  
						
						 
						
						... 
						
						
						
						- see https://github.com/janwilmans/LibIdentify  
						
						
							
						
					 
					
						2017-08-11 19:55:55 +01:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Martin Hořeňovský 
							
						 
					 
					
						
						
							
						
						2ce6c74f8f 
					 
					
						
						
							
							v1.9.7  
						
						 
						
						
						
						
							
  v1.9.7
 
						
					 
					
						2017-08-11 00:01:20 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Phil Nash 
							
						 
					 
					
						
						
							
						
						9688891868 
					 
					
						
						
							
							Fix issue with fatal errors and non-failing assertions  
						
						 
						
						... 
						
						
						
						Fixes  #990  
						
						
							
						
					 
					
						2017-08-10 21:44:54 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Martin Hořeňovský 
							
						 
					 
					
						
						
							
						
						4f21bb72ff 
					 
					
						
						
							
							Add tests for  #961  
						
						 
						
						
						
						
							
						
					 
					
						2017-08-10 21:38:07 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Martin Hořeňovský 
							
						 
					 
					
						
						
							
						
						b435e0d7c7 
					 
					
						
						
							
							Make default reporter configurable at compile time  
						
						 
						
						... 
						
						
						
						Closes  #978  
						
						
							
						
					 
					
						2017-08-10 16:45:38 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Martin Hořeňovský 
							
						 
					 
					
						
						
							
						
						ba0a09fd9e 
					 
					
						
						
							
							Update documentation with changes from  7e4038d 
						
						 
						
						
						
						
							
						
					 
					
						2017-08-10 16:43:17 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Martin Hořeňovský 
							
						 
					 
					
						
						
							
						
						7e4038d848 
					 
					
						
						
							
							Capture std::clog writes and combine them with std::cerr writes ( #989 )  
						
						 
						
						... 
						
						
						
						This also introduces Catch::clog() method to allow embedded targets
to override std::clog usage with their own stream (presumably null-sink),
similarly to how Catch::cout() and Catch::cerr() are used.
Fixes  #989  
						
						
							
						
					 
					
						2017-08-09 15:28:40 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Martin Hořeňovský 
							
						 
					 
					
						
						
							
						
						92d714ee12 
					 
					
						
						
							
							Update updateVcpkgPackage script for the new port format  
						
						 
						
						
						
						
							
						
					 
					
						2017-08-08 23:04:39 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Martin Hořeňovský 
							
						 
					 
					
						
						
							
						
						705a1bf527 
					 
					
						
						
							
							Add wandbox to release process documentation  
						
						 
						
						... 
						
						
						
						Also some formatting and wording changes. 
						
						
							
						
					 
					
						2017-08-08 23:04:10 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Cody Han 
							
						 
					 
					
						
						
							
						
						d5613fb18a 
					 
					
						
						
							
							Update matchers docs to reflect namespace usage  
						
						 
						
						
						
						
							
						
					 
					
						2017-08-03 19:11:21 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Martin Hořeňovský 
							
						 
					 
					
						
						
							
						
						62875c857e 
					 
					
						
						
							
							Add a landing page link to wandbox with catch preloaded  
						
						 
						
						... 
						
						
						
						Idea shamelessly stolen from nlohmann/json 
						
						
							
						
					 
					
						2017-08-01 23:45:35 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Danila Sukharev 
							
						 
					 
					
						
						
							
						
						ec2074e558 
					 
					
						
						
							
							Adding more flexibility into the cmake catch parsing script ( #971 )  
						
						 
						
						... 
						
						
						
						* Adding more flexibility into the cmake catch parsing script 
						
						
							
						
					 
					
						2017-08-01 17:33:53 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Martin Hořeňovský 
							
						 
					 
					
						
						
							
						
						7575749e56 
					 
					
						
						
							
							Fix compilation error on older compilers  
						
						 
						
						
						
						
							
						
					 
					
						2017-08-01 17:21:06 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Martin Hořeňovský 
							
						 
					 
					
						
						
							
						
						8a2ff20982 
					 
					
						
						
							
							Address some of the Resharper finds for Catch 1  
						
						 
						
						... 
						
						
						
						Closes  #957  as the other findings are mostly noise that is pointless
to fix in a branch that will be soon EoLd. 
						
						
							
						
					 
					
						2017-07-31 12:31:45 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Anton Vorobyev 
							
						 
					 
					
						
						
							
						
						d3377c791d 
					 
					
						
						
							
							Initial support for native IBM i ILE C++ ( #976 )  
						
						 
						
						... 
						
						
						
						* - Initial support for native IBM i ILE C++
Signed-off-by: zeromem <zeromem2@gmail.com > 
						
						
							
						
					 
					
						2017-07-31 10:47:42 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Martin Hořeňovský 
							
						 
					 
					
						
						
							
						
						c5dfa73d56 
					 
					
						
						
							
							Disable build broken by travis changes  
						
						 
						
						... 
						
						
						
						It should be reenabled later, but I don't have time to investigate
right now. 
						
						
							
						
					 
					
						2017-07-29 08:45:52 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Fran García Salomón 
							
						 
					 
					
						
						
							
						
						d65091fa06 
					 
					
						
						
							
							Fix for JUnit reporter when using dynamically generated sections ( #963 )  
						
						 
						
						... 
						
						
						
						* BySectionInfo should also take into account the section name in addition to the source code line 
						
						
							
						
					 
					
						2017-07-23 17:13:44 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Martin Hořeňovský 
							
						 
					 
					
						
						
							
						
						7a22bad763 
					 
					
						
						
							
							Addressed some static analysis warnings  
						
						 
						
						... 
						
						
						
						Based on findings in #957  
						
						
							
						
					 
					
						2017-07-19 09:50:08 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Phil Nash 
							
						 
					 
					
						
						
							
						
						8ebe94ca2e 
					 
					
						
						
							
							Added NOLINT annotations to selectively suppress clang_tidy warnings  
						
						 
						
						
						
						
							
						
					 
					
						2017-07-10 18:43:07 +01:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Martin Hořeňovský 
							
						 
					 
					
						
						
							
						
						106d7e2a74 
					 
					
						
						
							
							Initialize JunitReporter::unexpectedExceptions in constructor  
						
						 
						
						... 
						
						
						
						This is not needed for correctness, but will prevent PVS warning
from triggering, and there is basically no performance difference.
Closes  #951  
						
						
							
						
					 
					
						2017-07-10 10:30:17 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Neal Coombes 
							
						 
					 
					
						
						
							
						
						a53ea30723 
					 
					
						
						
							
							Eliminate some work when results won't be reported.  
						
						 
						
						
						
						
							
						
					 
					
						2017-07-07 01:34:12 +02:00  
					
					
						 
						
						
							
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Ivan Kush 
							
						 
					 
					
						
						
							
						
						8d380a7399 
					 
					
						
						
							
							added 'args' argument parser library  
						
						 
						
						
						
						
							
						
					 
					
						2017-07-05 15:55:28 +02:00