mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-10-31 20:27:11 +01:00 
			
		
		
		
	No, really trim paths in approval tests down to just filenames
This commit is contained in:
		| @@ -6,10 +6,10 @@ Run with -? for options | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/TestClass/failingCase | ./failing/TestClass/failingCase | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp | ClassTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp: FAILED: | ClassTests.cpp:<line number>: FAILED: | ||||||
|   REQUIRE( s == "world" ) |   REQUIRE( s == "world" ) | ||||||
| with expansion: | with expansion: | ||||||
|   "hello" == "world" |   "hello" == "world" | ||||||
| @@ -17,10 +17,10 @@ with expansion: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/Fixture/failingCase | ./failing/Fixture/failingCase | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp | ClassTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp: FAILED: | ClassTests.cpp:<line number>: FAILED: | ||||||
|   REQUIRE( m_a == 2 ) |   REQUIRE( m_a == 2 ) | ||||||
| with expansion: | with expansion: | ||||||
|   1 == 2 |   1 == 2 | ||||||
| @@ -28,70 +28,70 @@ with expansion: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/conditions/equality | ./failing/conditions/equality | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.int_seven == 6 ) |   CHECK( data.int_seven == 6 ) | ||||||
| with expansion: | with expansion: | ||||||
|   7 == 6 |   7 == 6 | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.int_seven == 8 ) |   CHECK( data.int_seven == 8 ) | ||||||
| with expansion: | with expansion: | ||||||
|   7 == 8 |   7 == 8 | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.int_seven == 0 ) |   CHECK( data.int_seven == 0 ) | ||||||
| with expansion: | with expansion: | ||||||
|   7 == 0 |   7 == 0 | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.float_nine_point_one == Approx( 9.11f ) ) |   CHECK( data.float_nine_point_one == Approx( 9.11f ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   9.1 == Approx( 9.11 ) |   9.1 == Approx( 9.11 ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.float_nine_point_one == Approx( 9.0f ) ) |   CHECK( data.float_nine_point_one == Approx( 9.0f ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   9.1 == Approx( 9 ) |   9.1 == Approx( 9 ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.float_nine_point_one == Approx( 1 ) ) |   CHECK( data.float_nine_point_one == Approx( 1 ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   9.1 == Approx( 1 ) |   9.1 == Approx( 1 ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.float_nine_point_one == Approx( 0 ) ) |   CHECK( data.float_nine_point_one == Approx( 0 ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   9.1 == Approx( 0 ) |   9.1 == Approx( 0 ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.double_pi == Approx( 3.1415 ) ) |   CHECK( data.double_pi == Approx( 3.1415 ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   3.1415926535 == Approx( 3.1415 ) |   3.1415926535 == Approx( 3.1415 ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.str_hello == "goodbye" ) |   CHECK( data.str_hello == "goodbye" ) | ||||||
| with expansion: | with expansion: | ||||||
|   "hello" == "goodbye" |   "hello" == "goodbye" | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.str_hello == "hell" ) |   CHECK( data.str_hello == "hell" ) | ||||||
| with expansion: | with expansion: | ||||||
|   "hello" == "hell" |   "hello" == "hell" | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.str_hello == "hello1" ) |   CHECK( data.str_hello == "hello1" ) | ||||||
| with expansion: | with expansion: | ||||||
|   "hello" == "hello1" |   "hello" == "hello1" | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.str_hello.size() == 6 ) |   CHECK( data.str_hello.size() == 6 ) | ||||||
| with expansion: | with expansion: | ||||||
|   5 == 6 |   5 == 6 | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( x == Approx( 1.301 ) ) |   CHECK( x == Approx( 1.301 ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   1.3 == Approx( 1.301 ) |   1.3 == Approx( 1.301 ) | ||||||
| @@ -99,30 +99,30 @@ with expansion: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/conditions/inequality | ./failing/conditions/inequality | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.int_seven != 7 ) |   CHECK( data.int_seven != 7 ) | ||||||
| with expansion: | with expansion: | ||||||
|   7 != 7 |   7 != 7 | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.float_nine_point_one != Approx( 9.1f ) ) |   CHECK( data.float_nine_point_one != Approx( 9.1f ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   9.1 != Approx( 9.1 ) |   9.1 != Approx( 9.1 ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.double_pi != Approx( 3.1415926535 ) ) |   CHECK( data.double_pi != Approx( 3.1415926535 ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   3.1415926535 != Approx( 3.14159 ) |   3.1415926535 != Approx( 3.14159 ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.str_hello != "hello" ) |   CHECK( data.str_hello != "hello" ) | ||||||
| with expansion: | with expansion: | ||||||
|   "hello" != "hello" |   "hello" != "hello" | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.str_hello.size() != 5 ) |   CHECK( data.str_hello.size() != 5 ) | ||||||
| with expansion: | with expansion: | ||||||
|   5 != 5 |   5 != 5 | ||||||
| @@ -130,100 +130,100 @@ with expansion: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/conditions/ordered | ./failing/conditions/ordered | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.int_seven > 7 ) |   CHECK( data.int_seven > 7 ) | ||||||
| with expansion: | with expansion: | ||||||
|   7 > 7 |   7 > 7 | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.int_seven < 7 ) |   CHECK( data.int_seven < 7 ) | ||||||
| with expansion: | with expansion: | ||||||
|   7 < 7 |   7 < 7 | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.int_seven > 8 ) |   CHECK( data.int_seven > 8 ) | ||||||
| with expansion: | with expansion: | ||||||
|   7 > 8 |   7 > 8 | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.int_seven < 6 ) |   CHECK( data.int_seven < 6 ) | ||||||
| with expansion: | with expansion: | ||||||
|   7 < 6 |   7 < 6 | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.int_seven < 0 ) |   CHECK( data.int_seven < 0 ) | ||||||
| with expansion: | with expansion: | ||||||
|   7 < 0 |   7 < 0 | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.int_seven < -1 ) |   CHECK( data.int_seven < -1 ) | ||||||
| with expansion: | with expansion: | ||||||
|   7 < -1 |   7 < -1 | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.int_seven >= 8 ) |   CHECK( data.int_seven >= 8 ) | ||||||
| with expansion: | with expansion: | ||||||
|   7 >= 8 |   7 >= 8 | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.int_seven <= 6 ) |   CHECK( data.int_seven <= 6 ) | ||||||
| with expansion: | with expansion: | ||||||
|   7 <= 6 |   7 <= 6 | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.float_nine_point_one < 9 ) |   CHECK( data.float_nine_point_one < 9 ) | ||||||
| with expansion: | with expansion: | ||||||
|   9.1 < 9 |   9.1 < 9 | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.float_nine_point_one > 10 ) |   CHECK( data.float_nine_point_one > 10 ) | ||||||
| with expansion: | with expansion: | ||||||
|   9.1 > 10 |   9.1 > 10 | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.float_nine_point_one > 9.2 ) |   CHECK( data.float_nine_point_one > 9.2 ) | ||||||
| with expansion: | with expansion: | ||||||
|   9.1 > 9.2 |   9.1 > 9.2 | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.str_hello > "hello" ) |   CHECK( data.str_hello > "hello" ) | ||||||
| with expansion: | with expansion: | ||||||
|   "hello" > "hello" |   "hello" > "hello" | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.str_hello < "hello" ) |   CHECK( data.str_hello < "hello" ) | ||||||
| with expansion: | with expansion: | ||||||
|   "hello" < "hello" |   "hello" < "hello" | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.str_hello > "hellp" ) |   CHECK( data.str_hello > "hellp" ) | ||||||
| with expansion: | with expansion: | ||||||
|   "hello" > "hellp" |   "hello" > "hellp" | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.str_hello > "z" ) |   CHECK( data.str_hello > "z" ) | ||||||
| with expansion: | with expansion: | ||||||
|   "hello" > "z" |   "hello" > "z" | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.str_hello < "hellm" ) |   CHECK( data.str_hello < "hellm" ) | ||||||
| with expansion: | with expansion: | ||||||
|   "hello" < "hellm" |   "hello" < "hellm" | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.str_hello < "a" ) |   CHECK( data.str_hello < "a" ) | ||||||
| with expansion: | with expansion: | ||||||
|   "hello" < "a" |   "hello" < "a" | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.str_hello >= "z" ) |   CHECK( data.str_hello >= "z" ) | ||||||
| with expansion: | with expansion: | ||||||
|   "hello" >= "z" |   "hello" >= "z" | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.str_hello <= "a" ) |   CHECK( data.str_hello <= "a" ) | ||||||
| with expansion: | with expansion: | ||||||
|   "hello" <= "a" |   "hello" <= "a" | ||||||
| @@ -231,39 +231,39 @@ with expansion: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/conditions/not | ./failing/conditions/not | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( false != false ) |   CHECK( false != false ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( true != true ) |   CHECK( true != true ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( !true ) |   CHECK( !true ) | ||||||
| with expansion: | with expansion: | ||||||
|   false |   false | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK_FALSE( true ) |   CHECK_FALSE( true ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( !trueValue ) |   CHECK( !trueValue ) | ||||||
| with expansion: | with expansion: | ||||||
|   false |   false | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK_FALSE( trueValue ) |   CHECK_FALSE( trueValue ) | ||||||
| with expansion: | with expansion: | ||||||
|   !true |   !true | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( !(1 == 1) ) |   CHECK( !(1 == 1) ) | ||||||
| with expansion: | with expansion: | ||||||
|   false |   false | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK_FALSE( 1 == 1 ) |   CHECK_FALSE( 1 == 1 ) | ||||||
| with expansion: | with expansion: | ||||||
|   !(1 == 1) |   !(1 == 1) | ||||||
| @@ -271,19 +271,19 @@ with expansion: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/exceptions/explicit | ./failing/exceptions/explicit | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp | ExceptionTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: | ExceptionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK_THROWS_AS( thisThrows() ) |   CHECK_THROWS_AS( thisThrows() ) | ||||||
| due to unexpected exception with message: | due to unexpected exception with message: | ||||||
|   expected exception |   expected exception | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: | ExceptionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK_THROWS_AS( thisDoesntThrow() ) |   CHECK_THROWS_AS( thisDoesntThrow() ) | ||||||
| because no exception was thrown where one was expected: | because no exception was thrown where one was expected: | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: | ExceptionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK_NOTHROW( thisThrows() ) |   CHECK_NOTHROW( thisThrows() ) | ||||||
| due to unexpected exception with message: | due to unexpected exception with message: | ||||||
|   expected exception |   expected exception | ||||||
| @@ -291,20 +291,20 @@ due to unexpected exception with message: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/exceptions/implicit | ./failing/exceptions/implicit | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp | ExceptionTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: | ExceptionTests.cpp:<line number>: FAILED: | ||||||
| due to unexpected exception with message: | due to unexpected exception with message: | ||||||
|   unexpected exception |   unexpected exception | ||||||
|  |  | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/exceptions/implicit/2 | ./failing/exceptions/implicit/2 | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp | ExceptionTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: | ExceptionTests.cpp:<line number>: FAILED: | ||||||
|   {Unknown expression after the reported line} |   {Unknown expression after the reported line} | ||||||
| due to unexpected exception with message: | due to unexpected exception with message: | ||||||
|   unexpected exception |   unexpected exception | ||||||
| @@ -313,20 +313,20 @@ due to unexpected exception with message: | |||||||
| ./failing/exceptions/implicit/3 | ./failing/exceptions/implicit/3 | ||||||
|   section name |   section name | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp | ExceptionTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: | ExceptionTests.cpp:<line number>: FAILED: | ||||||
| due to unexpected exception with message: | due to unexpected exception with message: | ||||||
|   unexpected exception |   unexpected exception | ||||||
|  |  | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/exceptions/implicit/4 | ./failing/exceptions/implicit/4 | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp | ExceptionTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: | ExceptionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( thisThrows() == 0 ) |   CHECK( thisThrows() == 0 ) | ||||||
| due to unexpected exception with message: | due to unexpected exception with message: | ||||||
|   expected exception |   expected exception | ||||||
| @@ -334,20 +334,20 @@ due to unexpected exception with message: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/exceptions/custom | ./failing/exceptions/custom | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp | ExceptionTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: | ExceptionTests.cpp:<line number>: FAILED: | ||||||
| due to unexpected exception with message: | due to unexpected exception with message: | ||||||
|   custom exception |   custom exception | ||||||
|  |  | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/exceptions/custom/nothrow | ./failing/exceptions/custom/nothrow | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp | ExceptionTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: | ExceptionTests.cpp:<line number>: FAILED: | ||||||
|   REQUIRE_NOTHROW( throwCustom() ) |   REQUIRE_NOTHROW( throwCustom() ) | ||||||
| due to unexpected exception with message: | due to unexpected exception with message: | ||||||
|   custom exception - not std |   custom exception - not std | ||||||
| @@ -355,10 +355,10 @@ due to unexpected exception with message: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/exceptions/custom/throw | ./failing/exceptions/custom/throw | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp | ExceptionTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: | ExceptionTests.cpp:<line number>: FAILED: | ||||||
|   REQUIRE_THROWS_AS( throwCustom() ) |   REQUIRE_THROWS_AS( throwCustom() ) | ||||||
| due to unexpected exception with message: | due to unexpected exception with message: | ||||||
|   custom exception - not std |   custom exception - not std | ||||||
| @@ -366,20 +366,20 @@ due to unexpected exception with message: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/exceptions/custom/double | ./failing/exceptions/custom/double | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp | ExceptionTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: | ExceptionTests.cpp:<line number>: FAILED: | ||||||
| due to unexpected exception with message: | due to unexpected exception with message: | ||||||
|   3.14 |   3.14 | ||||||
|  |  | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/message/info/1 | ./failing/message/info/1 | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp | MessageTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: FAILED: | MessageTests.cpp:<line number>: FAILED: | ||||||
|   REQUIRE( a == 1 ) |   REQUIRE( a == 1 ) | ||||||
| with expansion: | with expansion: | ||||||
|   2 == 1 |   2 == 1 | ||||||
| @@ -390,10 +390,10 @@ with messages: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./mixed/message/info/2 | ./mixed/message/info/2 | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp | MessageTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: FAILED: | MessageTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( a == 1 ) |   CHECK( a == 1 ) | ||||||
| with expansion: | with expansion: | ||||||
|   2 == 1 |   2 == 1 | ||||||
| @@ -401,7 +401,7 @@ with messages: | |||||||
|   this message may be logged later |   this message may be logged later | ||||||
|   this message should be logged |   this message should be logged | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: FAILED: | MessageTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( a == 0 ) |   CHECK( a == 0 ) | ||||||
| with expansion: | with expansion: | ||||||
|   2 == 0 |   2 == 0 | ||||||
| @@ -411,10 +411,10 @@ with message: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/message/fail | ./failing/message/fail | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp | MessageTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: FAILED: | MessageTests.cpp:<line number>: FAILED: | ||||||
| explicitly with message: | explicitly with message: | ||||||
|   This is a failure |   This is a failure | ||||||
|  |  | ||||||
| @@ -422,10 +422,10 @@ explicitly with message: | |||||||
| ./failing/message/sections | ./failing/message/sections | ||||||
|   one |   one | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp | MessageTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: FAILED: | MessageTests.cpp:<line number>: FAILED: | ||||||
| explicitly with message: | explicitly with message: | ||||||
|   Message from section one |   Message from section one | ||||||
|  |  | ||||||
| @@ -433,10 +433,10 @@ explicitly with message: | |||||||
| ./failing/message/sections | ./failing/message/sections | ||||||
|   two |   two | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp | MessageTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: FAILED: | MessageTests.cpp:<line number>: FAILED: | ||||||
| explicitly with message: | explicitly with message: | ||||||
|   Message from section two |   Message from section two | ||||||
|  |  | ||||||
| @@ -445,10 +445,10 @@ Message from section two | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./mixed/message/scoped | ./mixed/message/scoped | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp | MessageTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: FAILED: | MessageTests.cpp:<line number>: FAILED: | ||||||
|   REQUIRE( i < 10 ) |   REQUIRE( i < 10 ) | ||||||
| with expansion: | with expansion: | ||||||
|   10 < 10 |   10 < 10 | ||||||
| @@ -459,10 +459,10 @@ with messages: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| just failure | just failure | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp | MessageTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: FAILED: | MessageTests.cpp:<line number>: FAILED: | ||||||
| explicitly with message: | explicitly with message: | ||||||
|   Previous info should not be seen |   Previous info should not be seen | ||||||
|  |  | ||||||
| @@ -471,10 +471,10 @@ explicitly with message: | |||||||
|   s1 |   s1 | ||||||
|   s2 |   s2 | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: | MiscTests.cpp:<line number>: FAILED: | ||||||
|   REQUIRE( a == b ) |   REQUIRE( a == b ) | ||||||
| with expansion: | with expansion: | ||||||
|   1 == 2 |   1 == 2 | ||||||
| @@ -483,10 +483,10 @@ with expansion: | |||||||
| ./mixed/Misc/Sections/loops | ./mixed/Misc/Sections/loops | ||||||
|   s1 |   s1 | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: | MiscTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( b > a ) |   CHECK( b > a ) | ||||||
| with expansion: | with expansion: | ||||||
|   0 > 1 |   0 > 1 | ||||||
| @@ -494,45 +494,45 @@ with expansion: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./mixed/Misc/loops | ./mixed/Misc/loops | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: | MiscTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( ( fib[i] % 2 ) == 0 ) |   CHECK( ( fib[i] % 2 ) == 0 ) | ||||||
| with expansion: | with expansion: | ||||||
|   1 == 0 |   1 == 0 | ||||||
| with message: | with message: | ||||||
|   Testing if fib[0] (1) is even |   Testing if fib[0] (1) is even | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: | MiscTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( ( fib[i] % 2 ) == 0 ) |   CHECK( ( fib[i] % 2 ) == 0 ) | ||||||
| with expansion: | with expansion: | ||||||
|   1 == 0 |   1 == 0 | ||||||
| with message: | with message: | ||||||
|   Testing if fib[1] (1) is even |   Testing if fib[1] (1) is even | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: | MiscTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( ( fib[i] % 2 ) == 0 ) |   CHECK( ( fib[i] % 2 ) == 0 ) | ||||||
| with expansion: | with expansion: | ||||||
|   1 == 0 |   1 == 0 | ||||||
| with message: | with message: | ||||||
|   Testing if fib[3] (3) is even |   Testing if fib[3] (3) is even | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: | MiscTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( ( fib[i] % 2 ) == 0 ) |   CHECK( ( fib[i] % 2 ) == 0 ) | ||||||
| with expansion: | with expansion: | ||||||
|   1 == 0 |   1 == 0 | ||||||
| with message: | with message: | ||||||
|   Testing if fib[4] (5) is even |   Testing if fib[4] (5) is even | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: | MiscTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( ( fib[i] % 2 ) == 0 ) |   CHECK( ( fib[i] % 2 ) == 0 ) | ||||||
| with expansion: | with expansion: | ||||||
|   1 == 0 |   1 == 0 | ||||||
| with message: | with message: | ||||||
|   Testing if fib[6] (13) is even |   Testing if fib[6] (13) is even | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: | MiscTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( ( fib[i] % 2 ) == 0 ) |   CHECK( ( fib[i] % 2 ) == 0 ) | ||||||
| with expansion: | with expansion: | ||||||
|   1 == 0 |   1 == 0 | ||||||
| @@ -544,10 +544,10 @@ An error | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/info | ./failing/info | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: | MiscTests.cpp:<line number>: FAILED: | ||||||
|   REQUIRE( false ) |   REQUIRE( false ) | ||||||
| with messages: | with messages: | ||||||
|   hi |   hi | ||||||
| @@ -556,15 +556,15 @@ with messages: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/checkedif | ./failing/checkedif | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: | MiscTests.cpp:<line number>: FAILED: | ||||||
|   CHECKED_IF( flag ) |   CHECKED_IF( flag ) | ||||||
| with expansion: | with expansion: | ||||||
|   false |   false | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: | MiscTests.cpp:<line number>: FAILED: | ||||||
|   REQUIRE( testCheckedIf( false ) ) |   REQUIRE( testCheckedIf( false ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   false |   false | ||||||
| @@ -572,15 +572,15 @@ with expansion: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/checkedelse | ./failing/checkedelse | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: | MiscTests.cpp:<line number>: FAILED: | ||||||
|   CHECKED_ELSE( flag ) |   CHECKED_ELSE( flag ) | ||||||
| with expansion: | with expansion: | ||||||
|   false |   false | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: | MiscTests.cpp:<line number>: FAILED: | ||||||
|   REQUIRE( testCheckedElse( false ) ) |   REQUIRE( testCheckedElse( false ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   false |   false | ||||||
| @@ -588,10 +588,10 @@ with expansion: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./manual/onechar | ./manual/onechar | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: | MiscTests.cpp:<line number>: FAILED: | ||||||
|   REQUIRE( false ) |   REQUIRE( false ) | ||||||
| with message: | with message: | ||||||
|   3 |   3 | ||||||
| @@ -599,10 +599,10 @@ with message: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/matchers/Contains | ./failing/matchers/Contains | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: | MiscTests.cpp:<line number>: FAILED: | ||||||
|   CHECK_THAT( testStringForMatching() Contains( "not there" ) ) |   CHECK_THAT( testStringForMatching() Contains( "not there" ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   "this string contains 'abc' as a substring" contains: "not there" |   "this string contains 'abc' as a substring" contains: "not there" | ||||||
| @@ -610,10 +610,10 @@ with expansion: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/matchers/StartsWith | ./failing/matchers/StartsWith | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: | MiscTests.cpp:<line number>: FAILED: | ||||||
|   CHECK_THAT( testStringForMatching() StartsWith( "string" ) ) |   CHECK_THAT( testStringForMatching() StartsWith( "string" ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   "this string contains 'abc' as a substring" starts with: "string" |   "this string contains 'abc' as a substring" starts with: "string" | ||||||
| @@ -621,10 +621,10 @@ with expansion: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/matchers/EndsWith | ./failing/matchers/EndsWith | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: | MiscTests.cpp:<line number>: FAILED: | ||||||
|   CHECK_THAT( testStringForMatching() EndsWith( "this" ) ) |   CHECK_THAT( testStringForMatching() EndsWith( "this" ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   "this string contains 'abc' as a substring" ends with: "this" |   "this string contains 'abc' as a substring" ends with: "this" | ||||||
| @@ -632,10 +632,10 @@ with expansion: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/matchers/Equals | ./failing/matchers/Equals | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: | MiscTests.cpp:<line number>: FAILED: | ||||||
|   CHECK_THAT( testStringForMatching() Equals( "something else" ) ) |   CHECK_THAT( testStringForMatching() Equals( "something else" ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   "this string contains 'abc' as a substring" equals: "something else" |   "this string contains 'abc' as a substring" equals: "something else" | ||||||
| @@ -643,30 +643,30 @@ with expansion: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/CatchSectionInfiniteLoop | ./failing/CatchSectionInfiniteLoop | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: | MiscTests.cpp:<line number>: FAILED: | ||||||
| explicitly with message: | explicitly with message: | ||||||
|   to infinity and beyond |   to infinity and beyond | ||||||
|  |  | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/CatchSectionInfiniteLoop | ./failing/CatchSectionInfiniteLoop | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: | MiscTests.cpp:<line number>: FAILED: | ||||||
| explicitly with message: | explicitly with message: | ||||||
|   to infinity and beyond |   to infinity and beyond | ||||||
|  |  | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/CatchSectionInfiniteLoop | ./failing/CatchSectionInfiniteLoop | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: | MiscTests.cpp:<line number>: FAILED: | ||||||
| explicitly with message: | explicitly with message: | ||||||
|   to infinity and beyond |   to infinity and beyond | ||||||
|  |  | ||||||
| @@ -683,15 +683,15 @@ hello | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/Tricky/non streamable type | ./failing/Tricky/non streamable type | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp | TrickyTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: FAILED: | TrickyTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( &o1 == &o2 ) |   CHECK( &o1 == &o2 ) | ||||||
| with expansion: | with expansion: | ||||||
|   0x<hex digits> == 0x<hex digits> |   0x<hex digits> == 0x<hex digits> | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: FAILED: | TrickyTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( o1 == o2 ) |   CHECK( o1 == o2 ) | ||||||
| with expansion: | with expansion: | ||||||
|   {?} == {?} |   {?} == {?} | ||||||
| @@ -699,10 +699,10 @@ with expansion: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/string literals | ./failing/string literals | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp | TrickyTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: FAILED: | TrickyTests.cpp:<line number>: FAILED: | ||||||
|   REQUIRE( std::string( "first" ) == "second" ) |   REQUIRE( std::string( "first" ) == "second" ) | ||||||
| with expansion: | with expansion: | ||||||
|   "first" == "second" |   "first" == "second" | ||||||
|   | |||||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @@ -6,40 +6,40 @@ Run with -? for options | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./succeeding/Approx/simple | ./succeeding/Approx/simple | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp | ApproxTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( d == Approx( 1.23 ) ) |   REQUIRE( d == Approx( 1.23 ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   1.23 == Approx( 1.23 ) |   1.23 == Approx( 1.23 ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( d != Approx( 1.22 ) ) |   REQUIRE( d != Approx( 1.22 ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   1.23 != Approx( 1.22 ) |   1.23 != Approx( 1.22 ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( d != Approx( 1.24 ) ) |   REQUIRE( d != Approx( 1.24 ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   1.23 != Approx( 1.24 ) |   1.23 != Approx( 1.24 ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( Approx( d ) == 1.23 ) |   REQUIRE( Approx( d ) == 1.23 ) | ||||||
| with expansion: | with expansion: | ||||||
|   Approx( 1.23 ) == 1.23 |   Approx( 1.23 ) == 1.23 | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( Approx( d ) != 1.22 ) |   REQUIRE( Approx( d ) != 1.22 ) | ||||||
| with expansion: | with expansion: | ||||||
|   Approx( 1.23 ) != 1.22 |   Approx( 1.23 ) != 1.22 | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( Approx( d ) != 1.24 ) |   REQUIRE( Approx( d ) != 1.24 ) | ||||||
| with expansion: | with expansion: | ||||||
| @@ -48,16 +48,16 @@ with expansion: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./succeeding/Approx/epsilon | ./succeeding/Approx/epsilon | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp | ApproxTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( d != Approx( 1.231 ) ) |   REQUIRE( d != Approx( 1.231 ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   1.23 != Approx( 1.231 ) |   1.23 != Approx( 1.231 ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( d == Approx( 1.231 ).epsilon( 0.1 ) ) |   REQUIRE( d == Approx( 1.231 ).epsilon( 0.1 ) ) | ||||||
| with expansion: | with expansion: | ||||||
| @@ -66,16 +66,16 @@ with expansion: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./succeeding/Approx/float | ./succeeding/Approx/float | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp | ApproxTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( 1.23f == Approx( 1.23f ) ) |   REQUIRE( 1.23f == Approx( 1.23f ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   1.23 == Approx( 1.23 ) |   1.23 == Approx( 1.23 ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( 0.0f == Approx( 0.0f ) ) |   REQUIRE( 0.0f == Approx( 0.0f ) ) | ||||||
| with expansion: | with expansion: | ||||||
| @@ -84,48 +84,48 @@ with expansion: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./succeeding/Approx/int | ./succeeding/Approx/int | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp | ApproxTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( 1 == Approx( 1 ) ) |   REQUIRE( 1 == Approx( 1 ) ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( 0 == Approx( 0 ) ) |   REQUIRE( 0 == Approx( 0 ) ) | ||||||
|  |  | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./succeeding/Approx/mixed | ./succeeding/Approx/mixed | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp | ApproxTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( 1.0f == Approx( 1 ) ) |   REQUIRE( 1.0f == Approx( 1 ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   1 == Approx( 1 ) |   1 == Approx( 1 ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( 0 == Approx( dZero) ) |   REQUIRE( 0 == Approx( dZero) ) | ||||||
| with expansion: | with expansion: | ||||||
|   0 == Approx( 0 ) |   0 == Approx( 0 ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( 0 == Approx( dSmall ).epsilon( 0.001 ) ) |   REQUIRE( 0 == Approx( dSmall ).epsilon( 0.001 ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   0 == Approx( 1e-05 ) |   0 == Approx( 1e-05 ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( 1.234f == Approx( dMedium ) ) |   REQUIRE( 1.234f == Approx( dMedium ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   1.234 == Approx( 1.234 ) |   1.234 == Approx( 1.234 ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( dMedium == Approx( 1.234f ) ) |   REQUIRE( dMedium == Approx( 1.234f ) ) | ||||||
| with expansion: | with expansion: | ||||||
| @@ -134,52 +134,52 @@ with expansion: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./succeeding/Approx/custom | ./succeeding/Approx/custom | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp | ApproxTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( d == approx( 1.23 ) ) |   REQUIRE( d == approx( 1.23 ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   1.23 == Approx( 1.23 ) |   1.23 == Approx( 1.23 ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( d == approx( 1.22 ) ) |   REQUIRE( d == approx( 1.22 ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   1.23 == Approx( 1.22 ) |   1.23 == Approx( 1.22 ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( d == approx( 1.24 ) ) |   REQUIRE( d == approx( 1.24 ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   1.23 == Approx( 1.24 ) |   1.23 == Approx( 1.24 ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( d != approx( 1.25 ) ) |   REQUIRE( d != approx( 1.25 ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   1.23 != Approx( 1.25 ) |   1.23 != Approx( 1.25 ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( approx( d ) == 1.23 ) |   REQUIRE( approx( d ) == 1.23 ) | ||||||
| with expansion: | with expansion: | ||||||
|   Approx( 1.23 ) == 1.23 |   Approx( 1.23 ) == 1.23 | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( approx( d ) == 1.22 ) |   REQUIRE( approx( d ) == 1.22 ) | ||||||
| with expansion: | with expansion: | ||||||
|   Approx( 1.23 ) == 1.22 |   Approx( 1.23 ) == 1.22 | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( approx( d ) == 1.24 ) |   REQUIRE( approx( d ) == 1.24 ) | ||||||
| with expansion: | with expansion: | ||||||
|   Approx( 1.23 ) == 1.24 |   Approx( 1.23 ) == 1.24 | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( approx( d ) != 1.25 ) |   REQUIRE( approx( d ) != 1.25 ) | ||||||
| with expansion: | with expansion: | ||||||
| @@ -188,16 +188,16 @@ with expansion: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Approximate PI | Approximate PI | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp | ApproxTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( divide( 22, 7 ) == Approx( 3.141 ).epsilon( 0.001 ) ) |   REQUIRE( divide( 22, 7 ) == Approx( 3.141 ).epsilon( 0.001 ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   3.1428571429 == Approx( 3.141 ) |   3.1428571429 == Approx( 3.141 ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: | ApproxTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( divide( 22, 7 ) != Approx( 3.141 ).epsilon( 0.0001 ) ) |   REQUIRE( divide( 22, 7 ) != Approx( 3.141 ).epsilon( 0.0001 ) ) | ||||||
| with expansion: | with expansion: | ||||||
| @@ -206,10 +206,10 @@ with expansion: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./succeeding/TestClass/succeedingCase | ./succeeding/TestClass/succeedingCase | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp | ClassTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp: | ClassTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( s == "hello" ) |   REQUIRE( s == "hello" ) | ||||||
| with expansion: | with expansion: | ||||||
| @@ -218,10 +218,10 @@ with expansion: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/TestClass/failingCase | ./failing/TestClass/failingCase | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp | ClassTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp: FAILED: | ClassTests.cpp:<line number>: FAILED: | ||||||
|   REQUIRE( s == "world" ) |   REQUIRE( s == "world" ) | ||||||
| with expansion: | with expansion: | ||||||
|   "hello" == "world" |   "hello" == "world" | ||||||
| @@ -229,10 +229,10 @@ with expansion: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./succeeding/Fixture/succeedingCase | ./succeeding/Fixture/succeedingCase | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp | ClassTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp: | ClassTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( m_a == 1 ) |   REQUIRE( m_a == 1 ) | ||||||
| with expansion: | with expansion: | ||||||
| @@ -241,10 +241,10 @@ with expansion: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/Fixture/failingCase | ./failing/Fixture/failingCase | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp | ClassTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp: FAILED: | ClassTests.cpp:<line number>: FAILED: | ||||||
|   REQUIRE( m_a == 2 ) |   REQUIRE( m_a == 2 ) | ||||||
| with expansion: | with expansion: | ||||||
|   1 == 2 |   1 == 2 | ||||||
| @@ -252,46 +252,46 @@ with expansion: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./succeeding/conditions/equality | ./succeeding/conditions/equality | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: | ConditionTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( data.int_seven == 7 ) |   REQUIRE( data.int_seven == 7 ) | ||||||
| with expansion: | with expansion: | ||||||
|   7 == 7 |   7 == 7 | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: | ConditionTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( data.float_nine_point_one == Approx( 9.1f ) ) |   REQUIRE( data.float_nine_point_one == Approx( 9.1f ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   9.1 == Approx( 9.1 ) |   9.1 == Approx( 9.1 ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: | ConditionTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( data.double_pi == Approx( 3.1415926535 ) ) |   REQUIRE( data.double_pi == Approx( 3.1415926535 ) ) | ||||||
| with expansion: | with expansion: | ||||||
|   3.1415926535 == Approx( 3.14159 ) |   3.1415926535 == Approx( 3.14159 ) | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: | ConditionTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( data.str_hello == "hello" ) |   REQUIRE( data.str_hello == "hello" ) | ||||||
| with expansion: | with expansion: | ||||||
|   "hello" == "hello" |   "hello" == "hello" | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: | ConditionTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( "hello" == data.str_hello ) |   REQUIRE( "hello" == data.str_hello ) | ||||||
| with expansion: | with expansion: | ||||||
|   "hello" == "hello" |   "hello" == "hello" | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: | ConditionTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( data.str_hello.size() == 5 ) |   REQUIRE( data.str_hello.size() == 5 ) | ||||||
| with expansion: | with expansion: | ||||||
|   5 == 5 |   5 == 5 | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: | ConditionTests.cpp:<line number>: | ||||||
| PASSED: | PASSED: | ||||||
|   REQUIRE( x == Approx( 1.3 ) ) |   REQUIRE( x == Approx( 1.3 ) ) | ||||||
| with expansion: | with expansion: | ||||||
| @@ -300,15 +300,15 @@ with expansion: | |||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| ./failing/conditions/equality | ./failing/conditions/equality | ||||||
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
| ............................................................................... | ............................................................................... | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.int_seven == 6 ) |   CHECK( data.int_seven == 6 ) | ||||||
| with expansion: | with expansion: | ||||||
|   7 == 6 |   7 == 6 | ||||||
|  |  | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: | ConditionTests.cpp:<line number>: FAILED: | ||||||
|   CHECK( data.int_seven == 8 ) |   CHECK( data.int_seven == 8 ) | ||||||
| with expansion: | with expansion: | ||||||
|   7 == 8 |   7 == 8 | ||||||
|   | |||||||
| @@ -10,133 +10,133 @@ | |||||||
|     <testcase classname="TestClass" name="./succeeding/TestClass/succeedingCase" time="{duration}"/> |     <testcase classname="TestClass" name="./succeeding/TestClass/succeedingCase" time="{duration}"/> | ||||||
|     <testcase classname="TestClass" name="./failing/TestClass/failingCase" time="{duration}"> |     <testcase classname="TestClass" name="./failing/TestClass/failingCase" time="{duration}"> | ||||||
|       <failure message=""hello" == "world"" type="REQUIRE"> |       <failure message=""hello" == "world"" type="REQUIRE"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp | ClassTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="Fixture" name="./succeeding/Fixture/succeedingCase" time="{duration}"/> |     <testcase classname="Fixture" name="./succeeding/Fixture/succeedingCase" time="{duration}"/> | ||||||
|     <testcase classname="Fixture" name="./failing/Fixture/failingCase" time="{duration}"> |     <testcase classname="Fixture" name="./failing/Fixture/failingCase" time="{duration}"> | ||||||
|       <failure message="1 == 2" type="REQUIRE"> |       <failure message="1 == 2" type="REQUIRE"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp | ClassTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./succeeding/conditions/equality" time="{duration}"/> |     <testcase classname="global" name="./succeeding/conditions/equality" time="{duration}"/> | ||||||
|     <testcase classname="global" name="./failing/conditions/equality" time="{duration}"> |     <testcase classname="global" name="./failing/conditions/equality" time="{duration}"> | ||||||
|       <failure message="7 == 6" type="CHECK"> |       <failure message="7 == 6" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="7 == 8" type="CHECK"> |       <failure message="7 == 8" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="7 == 0" type="CHECK"> |       <failure message="7 == 0" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="9.1 == Approx( 9.11 )" type="CHECK"> |       <failure message="9.1 == Approx( 9.11 )" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="9.1 == Approx( 9 )" type="CHECK"> |       <failure message="9.1 == Approx( 9 )" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="9.1 == Approx( 1 )" type="CHECK"> |       <failure message="9.1 == Approx( 1 )" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="9.1 == Approx( 0 )" type="CHECK"> |       <failure message="9.1 == Approx( 0 )" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="3.1415926535 == Approx( 3.1415 )" type="CHECK"> |       <failure message="3.1415926535 == Approx( 3.1415 )" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message=""hello" == "goodbye"" type="CHECK"> |       <failure message=""hello" == "goodbye"" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message=""hello" == "hell"" type="CHECK"> |       <failure message=""hello" == "hell"" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message=""hello" == "hello1"" type="CHECK"> |       <failure message=""hello" == "hello1"" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="5 == 6" type="CHECK"> |       <failure message="5 == 6" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="1.3 == Approx( 1.301 )" type="CHECK"> |       <failure message="1.3 == Approx( 1.301 )" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./succeeding/conditions/inequality" time="{duration}"/> |     <testcase classname="global" name="./succeeding/conditions/inequality" time="{duration}"/> | ||||||
|     <testcase classname="global" name="./failing/conditions/inequality" time="{duration}"> |     <testcase classname="global" name="./failing/conditions/inequality" time="{duration}"> | ||||||
|       <failure message="7 != 7" type="CHECK"> |       <failure message="7 != 7" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="9.1 != Approx( 9.1 )" type="CHECK"> |       <failure message="9.1 != Approx( 9.1 )" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="3.1415926535 != Approx( 3.14159 )" type="CHECK"> |       <failure message="3.1415926535 != Approx( 3.14159 )" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message=""hello" != "hello"" type="CHECK"> |       <failure message=""hello" != "hello"" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="5 != 5" type="CHECK"> |       <failure message="5 != 5" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./succeeding/conditions/ordered" time="{duration}"/> |     <testcase classname="global" name="./succeeding/conditions/ordered" time="{duration}"/> | ||||||
|     <testcase classname="global" name="./failing/conditions/ordered" time="{duration}"> |     <testcase classname="global" name="./failing/conditions/ordered" time="{duration}"> | ||||||
|       <failure message="7 > 7" type="CHECK"> |       <failure message="7 > 7" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="7 < 7" type="CHECK"> |       <failure message="7 < 7" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="7 > 8" type="CHECK"> |       <failure message="7 > 8" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="7 < 6" type="CHECK"> |       <failure message="7 < 6" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="7 < 0" type="CHECK"> |       <failure message="7 < 0" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="7 < -1" type="CHECK"> |       <failure message="7 < -1" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="7 >= 8" type="CHECK"> |       <failure message="7 >= 8" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="7 <= 6" type="CHECK"> |       <failure message="7 <= 6" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="9.1 < 9" type="CHECK"> |       <failure message="9.1 < 9" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="9.1 > 10" type="CHECK"> |       <failure message="9.1 > 10" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="9.1 > 9.2" type="CHECK"> |       <failure message="9.1 > 9.2" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message=""hello" > "hello"" type="CHECK"> |       <failure message=""hello" > "hello"" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message=""hello" < "hello"" type="CHECK"> |       <failure message=""hello" < "hello"" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message=""hello" > "hellp"" type="CHECK"> |       <failure message=""hello" > "hellp"" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message=""hello" > "z"" type="CHECK"> |       <failure message=""hello" > "z"" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message=""hello" < "hellm"" type="CHECK"> |       <failure message=""hello" < "hellm"" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message=""hello" < "a"" type="CHECK"> |       <failure message=""hello" < "a"" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message=""hello" >= "z"" type="CHECK"> |       <failure message=""hello" >= "z"" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message=""hello" <= "a"" type="CHECK"> |       <failure message=""hello" <= "a"" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./succeeding/conditions/int literals" time="{duration}"/> |     <testcase classname="global" name="./succeeding/conditions/int literals" time="{duration}"/> | ||||||
| @@ -148,90 +148,90 @@ Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | |||||||
|     <testcase classname="global" name="./succeeding/conditions/not" time="{duration}"/> |     <testcase classname="global" name="./succeeding/conditions/not" time="{duration}"/> | ||||||
|     <testcase classname="global" name="./failing/conditions/not" time="{duration}"> |     <testcase classname="global" name="./failing/conditions/not" time="{duration}"> | ||||||
|       <failure message="false != false" type="CHECK"> |       <failure message="false != false" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="true != true" type="CHECK"> |       <failure message="true != true" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="false" type="CHECK"> |       <failure message="false" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="!true" type="CHECK_FALSE"> |       <failure message="!true" type="CHECK_FALSE"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="false" type="CHECK"> |       <failure message="false" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="!true" type="CHECK_FALSE"> |       <failure message="!true" type="CHECK_FALSE"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="false" type="CHECK"> |       <failure message="false" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="!(1 == 1)" type="CHECK_FALSE"> |       <failure message="!(1 == 1)" type="CHECK_FALSE"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp | ConditionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./succeeding/exceptions/explicit" time="{duration}"/> |     <testcase classname="global" name="./succeeding/exceptions/explicit" time="{duration}"/> | ||||||
|     <testcase classname="global" name="./failing/exceptions/explicit" time="{duration}"> |     <testcase classname="global" name="./failing/exceptions/explicit" time="{duration}"> | ||||||
|       <error message="thisThrows()" type="CHECK_THROWS_AS"> |       <error message="thisThrows()" type="CHECK_THROWS_AS"> | ||||||
| expected exception | expected exception | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp | ExceptionTests.cpp:<line number> | ||||||
|       </error> |       </error> | ||||||
|       <failure message="thisDoesntThrow()" type="CHECK_THROWS_AS"> |       <failure message="thisDoesntThrow()" type="CHECK_THROWS_AS"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp | ExceptionTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <error message="thisThrows()" type="CHECK_NOTHROW"> |       <error message="thisThrows()" type="CHECK_NOTHROW"> | ||||||
| expected exception | expected exception | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp | ExceptionTests.cpp:<line number> | ||||||
|       </error> |       </error> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./failing/exceptions/implicit" time="{duration}"> |     <testcase classname="global" name="./failing/exceptions/implicit" time="{duration}"> | ||||||
|       <error type="TEST_CASE"> |       <error type="TEST_CASE"> | ||||||
| unexpected exception | unexpected exception | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp | ExceptionTests.cpp:<line number> | ||||||
|       </error> |       </error> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./failing/exceptions/implicit/2" time="{duration}"> |     <testcase classname="global" name="./failing/exceptions/implicit/2" time="{duration}"> | ||||||
|       <error message="{Unknown expression after the reported line}"> |       <error message="{Unknown expression after the reported line}"> | ||||||
| unexpected exception | unexpected exception | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp | ExceptionTests.cpp:<line number> | ||||||
|       </error> |       </error> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="./failing/exceptions/implicit/3" name="section name" time="{duration}"> |     <testcase classname="./failing/exceptions/implicit/3" name="section name" time="{duration}"> | ||||||
|       <error type="TEST_CASE"> |       <error type="TEST_CASE"> | ||||||
| unexpected exception | unexpected exception | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp | ExceptionTests.cpp:<line number> | ||||||
|       </error> |       </error> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./failing/exceptions/implicit/4" time="{duration}"> |     <testcase classname="global" name="./failing/exceptions/implicit/4" time="{duration}"> | ||||||
|       <error message="thisThrows() == 0" type="CHECK"> |       <error message="thisThrows() == 0" type="CHECK"> | ||||||
| expected exception | expected exception | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp | ExceptionTests.cpp:<line number> | ||||||
|       </error> |       </error> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./failing/exceptions/custom" time="{duration}"> |     <testcase classname="global" name="./failing/exceptions/custom" time="{duration}"> | ||||||
|       <error type="TEST_CASE"> |       <error type="TEST_CASE"> | ||||||
| custom exception | custom exception | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp | ExceptionTests.cpp:<line number> | ||||||
|       </error> |       </error> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./failing/exceptions/custom/nothrow" time="{duration}"> |     <testcase classname="global" name="./failing/exceptions/custom/nothrow" time="{duration}"> | ||||||
|       <error message="throwCustom()" type="REQUIRE_NOTHROW"> |       <error message="throwCustom()" type="REQUIRE_NOTHROW"> | ||||||
| custom exception - not std | custom exception - not std | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp | ExceptionTests.cpp:<line number> | ||||||
|       </error> |       </error> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./failing/exceptions/custom/throw" time="{duration}"> |     <testcase classname="global" name="./failing/exceptions/custom/throw" time="{duration}"> | ||||||
|       <error message="throwCustom()" type="REQUIRE_THROWS_AS"> |       <error message="throwCustom()" type="REQUIRE_THROWS_AS"> | ||||||
| custom exception - not std | custom exception - not std | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp | ExceptionTests.cpp:<line number> | ||||||
|       </error> |       </error> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./failing/exceptions/custom/double" time="{duration}"> |     <testcase classname="global" name="./failing/exceptions/custom/double" time="{duration}"> | ||||||
|       <error type="TEST_CASE"> |       <error type="TEST_CASE"> | ||||||
| 3.14 | 3.14 | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp | ExceptionTests.cpp:<line number> | ||||||
|       </error> |       </error> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./succeeding/exceptions/notimplemented" time="{duration}"/> |     <testcase classname="global" name="./succeeding/exceptions/notimplemented" time="{duration}"/> | ||||||
| @@ -243,35 +243,35 @@ Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp | |||||||
|       <failure message="2 == 1" type="REQUIRE"> |       <failure message="2 == 1" type="REQUIRE"> | ||||||
| this message should be logged | this message should be logged | ||||||
| so should this | so should this | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp | MessageTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./mixed/message/info/2" time="{duration}"> |     <testcase classname="global" name="./mixed/message/info/2" time="{duration}"> | ||||||
|       <failure message="2 == 1" type="CHECK"> |       <failure message="2 == 1" type="CHECK"> | ||||||
| this message should be logged | this message should be logged | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp | MessageTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="2 == 0" type="CHECK"> |       <failure message="2 == 0" type="CHECK"> | ||||||
| and this, but later | and this, but later | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp | MessageTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./failing/message/fail" time="{duration}"> |     <testcase classname="global" name="./failing/message/fail" time="{duration}"> | ||||||
|       <failure type="FAIL"> |       <failure type="FAIL"> | ||||||
| This is a failure | This is a failure | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp | MessageTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="./failing/message/sections" name="one" time="{duration}"> |     <testcase classname="./failing/message/sections" name="one" time="{duration}"> | ||||||
|       <failure type="FAIL"> |       <failure type="FAIL"> | ||||||
| Message from section one | Message from section one | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp | MessageTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="./failing/message/sections" name="two" time="{duration}"> |     <testcase classname="./failing/message/sections" name="two" time="{duration}"> | ||||||
|       <failure type="FAIL"> |       <failure type="FAIL"> | ||||||
| Message from section two | Message from section two | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp | MessageTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="./succeeding/message/sections/stdout" name="two" time="{duration}"> |     <testcase classname="./succeeding/message/sections/stdout" name="two" time="{duration}"> | ||||||
| @@ -284,14 +284,14 @@ Message from section two | |||||||
|       <failure message="10 < 10" type="REQUIRE"> |       <failure message="10 < 10" type="REQUIRE"> | ||||||
| current counter 10 | current counter 10 | ||||||
| i := 10 | i := 10 | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp | MessageTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./succeeding/nofail" time="{duration}"/> |     <testcase classname="global" name="./succeeding/nofail" time="{duration}"/> | ||||||
|     <testcase classname="global" name="just failure" time="{duration}"> |     <testcase classname="global" name="just failure" time="{duration}"> | ||||||
|       <failure type="FAIL"> |       <failure type="FAIL"> | ||||||
| Previous info should not be seen | Previous info should not be seen | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp | MessageTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="./succeeding/Misc/Sections" name="s1" time="{duration}"/> |     <testcase classname="./succeeding/Misc/Sections" name="s1" time="{duration}"/> | ||||||
| @@ -300,40 +300,40 @@ Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp | |||||||
|     <testcase classname="./succeeding/Misc/Sections/nested" name="s1/s2" time="{duration}"/> |     <testcase classname="./succeeding/Misc/Sections/nested" name="s1/s2" time="{duration}"/> | ||||||
|     <testcase classname="./mixed/Misc/Sections/nested2" name="s1/s2" time="{duration}"> |     <testcase classname="./mixed/Misc/Sections/nested2" name="s1/s2" time="{duration}"> | ||||||
|       <failure message="1 == 2" type="REQUIRE"> |       <failure message="1 == 2" type="REQUIRE"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="./mixed/Misc/Sections/nested2" name="s1/s3" time="{duration}"/> |     <testcase classname="./mixed/Misc/Sections/nested2" name="s1/s3" time="{duration}"/> | ||||||
|     <testcase classname="./mixed/Misc/Sections/nested2" name="s1/s4" time="{duration}"/> |     <testcase classname="./mixed/Misc/Sections/nested2" name="s1/s4" time="{duration}"/> | ||||||
|     <testcase classname="./mixed/Misc/Sections/loops" name="s1" time="{duration}"> |     <testcase classname="./mixed/Misc/Sections/loops" name="s1" time="{duration}"> | ||||||
|       <failure message="0 > 1" type="CHECK"> |       <failure message="0 > 1" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./mixed/Misc/loops" time="{duration}"> |     <testcase classname="global" name="./mixed/Misc/loops" time="{duration}"> | ||||||
|       <failure message="1 == 0" type="CHECK"> |       <failure message="1 == 0" type="CHECK"> | ||||||
| Testing if fib[0] (1) is even | Testing if fib[0] (1) is even | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="1 == 0" type="CHECK"> |       <failure message="1 == 0" type="CHECK"> | ||||||
| Testing if fib[1] (1) is even | Testing if fib[1] (1) is even | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="1 == 0" type="CHECK"> |       <failure message="1 == 0" type="CHECK"> | ||||||
| Testing if fib[3] (3) is even | Testing if fib[3] (3) is even | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="1 == 0" type="CHECK"> |       <failure message="1 == 0" type="CHECK"> | ||||||
| Testing if fib[4] (5) is even | Testing if fib[4] (5) is even | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="1 == 0" type="CHECK"> |       <failure message="1 == 0" type="CHECK"> | ||||||
| Testing if fib[6] (13) is even | Testing if fib[6] (13) is even | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="1 == 0" type="CHECK"> |       <failure message="1 == 0" type="CHECK"> | ||||||
| Testing if fib[7] (21) is even | Testing if fib[7] (21) is even | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./succeeding/Misc/stdout,stderr" time="{duration}"> |     <testcase classname="global" name="./succeeding/Misc/stdout,stderr" time="{duration}"> | ||||||
| @@ -349,53 +349,53 @@ An error | |||||||
|       <failure message="false" type="REQUIRE"> |       <failure message="false" type="REQUIRE"> | ||||||
| hi | hi | ||||||
| i := 7 | i := 7 | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./succeeding/checkedif" time="{duration}"/> |     <testcase classname="global" name="./succeeding/checkedif" time="{duration}"/> | ||||||
|     <testcase classname="global" name="./failing/checkedif" time="{duration}"> |     <testcase classname="global" name="./failing/checkedif" time="{duration}"> | ||||||
|       <failure message="false" type="CHECKED_IF"> |       <failure message="false" type="CHECKED_IF"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="false" type="REQUIRE"> |       <failure message="false" type="REQUIRE"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./succeeding/checkedelse" time="{duration}"/> |     <testcase classname="global" name="./succeeding/checkedelse" time="{duration}"/> | ||||||
|     <testcase classname="global" name="./failing/checkedelse" time="{duration}"> |     <testcase classname="global" name="./failing/checkedelse" time="{duration}"> | ||||||
|       <failure message="false" type="CHECKED_ELSE"> |       <failure message="false" type="CHECKED_ELSE"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="false" type="REQUIRE"> |       <failure message="false" type="REQUIRE"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./manual/onechar" time="{duration}"> |     <testcase classname="global" name="./manual/onechar" time="{duration}"> | ||||||
|       <failure message="false" type="REQUIRE"> |       <failure message="false" type="REQUIRE"> | ||||||
| 3 | 3 | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./succeeding/atomic if" time="{duration}"/> |     <testcase classname="global" name="./succeeding/atomic if" time="{duration}"/> | ||||||
|     <testcase classname="global" name="./succeeding/matchers" time="{duration}"/> |     <testcase classname="global" name="./succeeding/matchers" time="{duration}"/> | ||||||
|     <testcase classname="global" name="./failing/matchers/Contains" time="{duration}"> |     <testcase classname="global" name="./failing/matchers/Contains" time="{duration}"> | ||||||
|       <failure message=""this string contains 'abc' as a substring" contains: "not there"" type="CHECK_THAT"> |       <failure message=""this string contains 'abc' as a substring" contains: "not there"" type="CHECK_THAT"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./failing/matchers/StartsWith" time="{duration}"> |     <testcase classname="global" name="./failing/matchers/StartsWith" time="{duration}"> | ||||||
|       <failure message=""this string contains 'abc' as a substring" starts with: "string"" type="CHECK_THAT"> |       <failure message=""this string contains 'abc' as a substring" starts with: "string"" type="CHECK_THAT"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./failing/matchers/EndsWith" time="{duration}"> |     <testcase classname="global" name="./failing/matchers/EndsWith" time="{duration}"> | ||||||
|       <failure message=""this string contains 'abc' as a substring" ends with: "this"" type="CHECK_THAT"> |       <failure message=""this string contains 'abc' as a substring" ends with: "this"" type="CHECK_THAT"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./failing/matchers/Equals" time="{duration}"> |     <testcase classname="global" name="./failing/matchers/Equals" time="{duration}"> | ||||||
|       <failure message=""this string contains 'abc' as a substring" equals: "something else"" type="CHECK_THAT"> |       <failure message=""this string contains 'abc' as a substring" equals: "something else"" type="CHECK_THAT"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="string" time="{duration}"/> |     <testcase classname="global" name="string" time="{duration}"/> | ||||||
| @@ -413,15 +413,15 @@ Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | |||||||
|     <testcase classname="./failing/CatchSectionInfiniteLoop" name="root" time="{duration}"> |     <testcase classname="./failing/CatchSectionInfiniteLoop" name="root" time="{duration}"> | ||||||
|       <failure type="FAIL"> |       <failure type="FAIL"> | ||||||
| to infinity and beyond | to infinity and beyond | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure type="FAIL"> |       <failure type="FAIL"> | ||||||
| to infinity and beyond | to infinity and beyond | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure type="FAIL"> |       <failure type="FAIL"> | ||||||
| to infinity and beyond | to infinity and beyond | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp | MiscTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="./failing/CatchSectionInfiniteLoop" name="Outer/Inner" time="{duration}"/> |     <testcase classname="./failing/CatchSectionInfiniteLoop" name="Outer/Inner" time="{duration}"/> | ||||||
| @@ -496,15 +496,15 @@ hello | |||||||
|     <testcase classname="global" name="./inprogress/failing/Tricky/compound lhs" time="{duration}"/> |     <testcase classname="global" name="./inprogress/failing/Tricky/compound lhs" time="{duration}"/> | ||||||
|     <testcase classname="global" name="./failing/Tricky/non streamable type" time="{duration}"> |     <testcase classname="global" name="./failing/Tricky/non streamable type" time="{duration}"> | ||||||
|       <failure message="0x<hex digits> == 0x<hex digits>" type="CHECK"> |       <failure message="0x<hex digits> == 0x<hex digits>" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp | TrickyTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|       <failure message="{?} == {?}" type="CHECK"> |       <failure message="{?} == {?}" type="CHECK"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp | TrickyTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./failing/string literals" time="{duration}"> |     <testcase classname="global" name="./failing/string literals" time="{duration}"> | ||||||
|       <failure message=""first" == "second"" type="REQUIRE"> |       <failure message=""first" == "second"" type="REQUIRE"> | ||||||
| Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp | TrickyTests.cpp:<line number> | ||||||
|       </failure> |       </failure> | ||||||
|     </testcase> |     </testcase> | ||||||
|     <testcase classname="global" name="./succeeding/side-effects" time="{duration}"/> |     <testcase classname="global" name="./succeeding/side-effects" time="{duration}"/> | ||||||
|   | |||||||
							
								
								
									
										21
									
								
								projects/SelfTest/makefile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								projects/SelfTest/makefile
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,21 @@ | |||||||
|  | SOURCES =	ApproxTests.cpp \ | ||||||
|  | 			ClassTests.cpp \ | ||||||
|  | 			ConditionTests.cpp \ | ||||||
|  |       		ExceptionTests.cpp \ | ||||||
|  |       		GeneratorTests.cpp \ | ||||||
|  |       		MessageTests.cpp \ | ||||||
|  |       		MiscTests.cpp \ | ||||||
|  |       		TestMain.cpp \ | ||||||
|  |       		TrickyTests.cpp \ | ||||||
|  |       		BDDTests.cpp \ | ||||||
|  |       		VariadicMacrosTests.cpp \ | ||||||
|  |       		catch_self_test.cpp | ||||||
|  | OBJECTS    = $(patsubst %.cpp, %.o, $(SOURCES)) | ||||||
|  | CXX = g++ | ||||||
|  | CXXFLAGS  = -I../../include | ||||||
|  |  | ||||||
|  | CatchSelfTest: $(OBJECTS) | ||||||
|  | 	$(CXX) -o $@ $^ | ||||||
|  |  | ||||||
|  | clean: | ||||||
|  | 	rm -f $(OBJECTS) | ||||||
| @@ -7,7 +7,8 @@ from scriptCommon import catchPath | |||||||
|  |  | ||||||
| rootPath = os.path.join( catchPath, 'projects/SelfTest/Baselines' ) | rootPath = os.path.join( catchPath, 'projects/SelfTest/Baselines' ) | ||||||
|  |  | ||||||
| filenameParser = re.compile( r'.*?/(.*\..pp):([0-9]*)(.*)' ) | filenameParser = re.compile( r'.*/(.*\..pp:)(.*)' ) | ||||||
|  | filelineParser = re.compile( r'(.*\..pp:)([0-9]*)(.*)' ) | ||||||
| lineNumberParser = re.compile( r'(.*)line="[0-9]*"(.*)' ) | lineNumberParser = re.compile( r'(.*)line="[0-9]*"(.*)' ) | ||||||
| hexParser = re.compile( r'(.*)\b(0[xX][0-9a-fA-F]+)\b(.*)' ) | hexParser = re.compile( r'(.*)\b(0[xX][0-9a-fA-F]+)\b(.*)' ) | ||||||
| durationsParser = re.compile( r'(.*)time="[0-9]*\.[0-9]*"(.*)' ) | durationsParser = re.compile( r'(.*)time="[0-9]*\.[0-9]*"(.*)' ) | ||||||
| @@ -22,7 +23,10 @@ overallResult = 0 | |||||||
| def filterLine( line ): | def filterLine( line ): | ||||||
| 	m = filenameParser.match( line ) | 	m = filenameParser.match( line ) | ||||||
| 	if m: | 	if m: | ||||||
| 		line = m.group(1) + m.group(3) | 		line = m.group(1) + m.group(2) | ||||||
|  | 		m = filelineParser.match( line ) | ||||||
|  | 		if m: | ||||||
|  | 			line = m.group(1) + "<line number>" + m.group(3) | ||||||
| 	else: | 	else: | ||||||
| 		m = lineNumberParser.match( line ) | 		m = lineNumberParser.match( line ) | ||||||
| 		if m: | 		if m: | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Phil Nash
					Phil Nash