Made approvals more platform agnostic

removes root from all paths - so only relative paths remain
diff --git a/projects/SelfTest/Baselines/xml.sw.approved.txt b/projects/SelfTest/Baselines/xml.sw.approved.txt
index 200c28f..9a273fb 100644
--- a/projects/SelfTest/Baselines/xml.sw.approved.txt
+++ b/projects/SelfTest/Baselines/xml.sw.approved.txt
@@ -1,7 +1,7 @@
 <Catch name="CatchSelfTest">
   <Group name="all tests">
     <TestCase name="toString(enum)">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/EnumToString.cpp" >
+      <Expression success="true" filename="projects/SelfTest/EnumToString.cpp" >
         <Original>
           Catch::toString(e0) == &quot;0&quot;
         </Original>
@@ -9,7 +9,7 @@
           &quot;0&quot; == &quot;0&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/EnumToString.cpp" >
+      <Expression success="true" filename="projects/SelfTest/EnumToString.cpp" >
         <Original>
           Catch::toString(e1) == &quot;1&quot;
         </Original>
@@ -20,7 +20,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="toString(enum w/operator&lt;&lt;)">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/EnumToString.cpp" >
+      <Expression success="true" filename="projects/SelfTest/EnumToString.cpp" >
         <Original>
           Catch::toString(e0) == &quot;E2{0}&quot;
         </Original>
@@ -28,7 +28,7 @@
           &quot;E2{0}&quot; == &quot;E2{0}&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/EnumToString.cpp" >
+      <Expression success="true" filename="projects/SelfTest/EnumToString.cpp" >
         <Original>
           Catch::toString(e1) == &quot;E2{1}&quot;
         </Original>
@@ -39,7 +39,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="toString(enum class)">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/EnumToString.cpp" >
+      <Expression success="true" filename="projects/SelfTest/EnumToString.cpp" >
         <Original>
           Catch::toString(e0) == &quot;0&quot;
         </Original>
@@ -47,7 +47,7 @@
           &quot;0&quot; == &quot;0&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/EnumToString.cpp" >
+      <Expression success="true" filename="projects/SelfTest/EnumToString.cpp" >
         <Original>
           Catch::toString(e1) == &quot;1&quot;
         </Original>
@@ -58,7 +58,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="toString(enum class w/operator&lt;&lt;)">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/EnumToString.cpp" >
+      <Expression success="true" filename="projects/SelfTest/EnumToString.cpp" >
         <Original>
           Catch::toString(e0) == &quot;E2/V0&quot;
         </Original>
@@ -66,7 +66,7 @@
           &quot;E2/V0&quot; == &quot;E2/V0&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/EnumToString.cpp" >
+      <Expression success="true" filename="projects/SelfTest/EnumToString.cpp" >
         <Original>
           Catch::toString(e1) == &quot;E2/V1&quot;
         </Original>
@@ -74,7 +74,7 @@
           &quot;E2/V1&quot; == &quot;E2/V1&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/EnumToString.cpp" >
+      <Expression success="true" filename="projects/SelfTest/EnumToString.cpp" >
         <Original>
           Catch::toString(e3) == &quot;Unknown enum value 10&quot;
         </Original>
@@ -87,7 +87,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Some simple comparisons between doubles">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           d == Approx( 1.23 )
         </Original>
@@ -95,7 +95,7 @@
           1.23 == Approx( 1.23 )
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           d != Approx( 1.22 )
         </Original>
@@ -103,7 +103,7 @@
           1.23 != Approx( 1.22 )
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           d != Approx( 1.24 )
         </Original>
@@ -111,7 +111,7 @@
           1.23 != Approx( 1.24 )
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           Approx( d ) == 1.23
         </Original>
@@ -119,7 +119,7 @@
           Approx( 1.23 ) == 1.23
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           Approx( d ) != 1.22
         </Original>
@@ -127,7 +127,7 @@
           Approx( 1.23 ) != 1.22
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           Approx( d ) != 1.24
         </Original>
@@ -138,7 +138,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Approximate comparisons with different epsilons">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           d != Approx( 1.231 )
         </Original>
@@ -146,7 +146,7 @@
           1.23 != Approx( 1.231 )
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           d == Approx( 1.231 ).epsilon( 0.1 )
         </Original>
@@ -157,7 +157,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Approximate comparisons with floats">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           1.23f == Approx( 1.23f )
         </Original>
@@ -165,7 +165,7 @@
           1.23f == Approx( 1.2300000191 )
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           0.0f == Approx( 0.0f )
         </Original>
@@ -176,7 +176,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Approximate comparisons with ints">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           1 == Approx( 1 )
         </Original>
@@ -184,7 +184,7 @@
           1 == Approx( 1.0 )
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           0 == Approx( 0 )
         </Original>
@@ -195,7 +195,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Approximate comparisons with mixed numeric types">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           1.0f == Approx( 1 )
         </Original>
@@ -203,7 +203,7 @@
           1.0f == Approx( 1.0 )
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           0 == Approx( dZero)
         </Original>
@@ -211,7 +211,7 @@
           0 == Approx( 0.0 )
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           0 == Approx( dSmall ).epsilon( 0.001 )
         </Original>
@@ -219,7 +219,7 @@
           0 == Approx( 0.00001 )
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           1.234f == Approx( dMedium )
         </Original>
@@ -227,7 +227,7 @@
           1.234f == Approx( 1.234 )
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           dMedium == Approx( 1.234f )
         </Original>
@@ -238,7 +238,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Use a custom approx">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           d == approx( 1.23 )
         </Original>
@@ -246,7 +246,7 @@
           1.23 == Approx( 1.23 )
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           d == approx( 1.22 )
         </Original>
@@ -254,7 +254,7 @@
           1.23 == Approx( 1.22 )
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           d == approx( 1.24 )
         </Original>
@@ -262,7 +262,7 @@
           1.23 == Approx( 1.24 )
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           d != approx( 1.25 )
         </Original>
@@ -270,7 +270,7 @@
           1.23 != Approx( 1.25 )
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           approx( d ) == 1.23
         </Original>
@@ -278,7 +278,7 @@
           Approx( 1.23 ) == 1.23
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           approx( d ) == 1.22
         </Original>
@@ -286,7 +286,7 @@
           Approx( 1.23 ) == 1.22
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           approx( d ) == 1.24
         </Original>
@@ -294,7 +294,7 @@
           Approx( 1.23 ) == 1.24
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           approx( d ) != 1.25
         </Original>
@@ -305,7 +305,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Approximate PI">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           divide( 22, 7 ) == Approx( 3.141 ).epsilon( 0.001 )
         </Original>
@@ -313,7 +313,7 @@
           3.1428571429 == Approx( 3.141 )
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ApproxTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ApproxTests.cpp" >
         <Original>
           divide( 22, 7 ) != Approx( 3.141 ).epsilon( 0.0001 )
         </Original>
@@ -324,7 +324,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="A METHOD_AS_TEST_CASE based test run that succeeds">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ClassTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ClassTests.cpp" >
         <Original>
           s == &quot;hello&quot;
         </Original>
@@ -335,7 +335,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="A METHOD_AS_TEST_CASE based test run that fails">
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ClassTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ClassTests.cpp" >
         <Original>
           s == &quot;world&quot;
         </Original>
@@ -346,7 +346,7 @@
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="A TEST_CASE_METHOD based test run that succeeds">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ClassTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ClassTests.cpp" >
         <Original>
           m_a == 1
         </Original>
@@ -357,7 +357,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="A TEST_CASE_METHOD based test run that fails">
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ClassTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ClassTests.cpp" >
         <Original>
           m_a == 2
         </Original>
@@ -368,7 +368,7 @@
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="Equality checks that should succeed">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.int_seven == 7
         </Original>
@@ -376,7 +376,7 @@
           7 == 7
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.float_nine_point_one == Approx( 9.1f )
         </Original>
@@ -384,7 +384,7 @@
           9.1f == Approx( 9.1000003815 )
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.double_pi == Approx( 3.1415926535 )
         </Original>
@@ -392,7 +392,7 @@
           3.1415926535 == Approx( 3.1415926535 )
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello == &quot;hello&quot;
         </Original>
@@ -400,7 +400,7 @@
           &quot;hello&quot; == &quot;hello&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           &quot;hello&quot; == data.str_hello
         </Original>
@@ -408,7 +408,7 @@
           &quot;hello&quot; == &quot;hello&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello.size() == 5
         </Original>
@@ -416,7 +416,7 @@
           5 == 5
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           x == Approx( 1.3 )
         </Original>
@@ -427,7 +427,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Equality checks that should fail">
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.int_seven == 6
         </Original>
@@ -435,7 +435,7 @@
           7 == 6
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.int_seven == 8
         </Original>
@@ -443,7 +443,7 @@
           7 == 8
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.int_seven == 0
         </Original>
@@ -451,7 +451,7 @@
           7 == 0
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.float_nine_point_one == Approx( 9.11f )
         </Original>
@@ -459,7 +459,7 @@
           9.1f == Approx( 9.1099996567 )
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.float_nine_point_one == Approx( 9.0f )
         </Original>
@@ -467,7 +467,7 @@
           9.1f == Approx( 9.0 )
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.float_nine_point_one == Approx( 1 )
         </Original>
@@ -475,7 +475,7 @@
           9.1f == Approx( 1.0 )
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.float_nine_point_one == Approx( 0 )
         </Original>
@@ -483,7 +483,7 @@
           9.1f == Approx( 0.0 )
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.double_pi == Approx( 3.1415 )
         </Original>
@@ -491,7 +491,7 @@
           3.1415926535 == Approx( 3.1415 )
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello == &quot;goodbye&quot;
         </Original>
@@ -499,7 +499,7 @@
           &quot;hello&quot; == &quot;goodbye&quot;
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello == &quot;hell&quot;
         </Original>
@@ -507,7 +507,7 @@
           &quot;hello&quot; == &quot;hell&quot;
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello == &quot;hello1&quot;
         </Original>
@@ -515,7 +515,7 @@
           &quot;hello&quot; == &quot;hello1&quot;
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello.size() == 6
         </Original>
@@ -523,7 +523,7 @@
           5 == 6
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           x == Approx( 1.301 )
         </Original>
@@ -534,7 +534,7 @@
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="Inequality checks that should succeed">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.int_seven != 6
         </Original>
@@ -542,7 +542,7 @@
           7 != 6
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.int_seven != 8
         </Original>
@@ -550,7 +550,7 @@
           7 != 8
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.float_nine_point_one != Approx( 9.11f )
         </Original>
@@ -558,7 +558,7 @@
           9.1f != Approx( 9.1099996567 )
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.float_nine_point_one != Approx( 9.0f )
         </Original>
@@ -566,7 +566,7 @@
           9.1f != Approx( 9.0 )
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.float_nine_point_one != Approx( 1 )
         </Original>
@@ -574,7 +574,7 @@
           9.1f != Approx( 1.0 )
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.float_nine_point_one != Approx( 0 )
         </Original>
@@ -582,7 +582,7 @@
           9.1f != Approx( 0.0 )
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.double_pi != Approx( 3.1415 )
         </Original>
@@ -590,7 +590,7 @@
           3.1415926535 != Approx( 3.1415 )
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello != &quot;goodbye&quot;
         </Original>
@@ -598,7 +598,7 @@
           &quot;hello&quot; != &quot;goodbye&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello != &quot;hell&quot;
         </Original>
@@ -606,7 +606,7 @@
           &quot;hello&quot; != &quot;hell&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello != &quot;hello1&quot;
         </Original>
@@ -614,7 +614,7 @@
           &quot;hello&quot; != &quot;hello1&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello.size() != 6
         </Original>
@@ -625,7 +625,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Inequality checks that should fail">
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.int_seven != 7
         </Original>
@@ -633,7 +633,7 @@
           7 != 7
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.float_nine_point_one != Approx( 9.1f )
         </Original>
@@ -641,7 +641,7 @@
           9.1f != Approx( 9.1000003815 )
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.double_pi != Approx( 3.1415926535 )
         </Original>
@@ -649,7 +649,7 @@
           3.1415926535 != Approx( 3.1415926535 )
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello != &quot;hello&quot;
         </Original>
@@ -657,7 +657,7 @@
           &quot;hello&quot; != &quot;hello&quot;
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello.size() != 5
         </Original>
@@ -668,7 +668,7 @@
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="Ordering comparison checks that should succeed">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.int_seven &lt; 8
         </Original>
@@ -676,7 +676,7 @@
           7 &lt; 8
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.int_seven > 6
         </Original>
@@ -684,7 +684,7 @@
           7 > 6
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.int_seven > 0
         </Original>
@@ -692,7 +692,7 @@
           7 > 0
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.int_seven > -1
         </Original>
@@ -700,7 +700,7 @@
           7 > -1
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.int_seven >= 7
         </Original>
@@ -708,7 +708,7 @@
           7 >= 7
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.int_seven >= 6
         </Original>
@@ -716,7 +716,7 @@
           7 >= 6
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.int_seven &lt;= 7
         </Original>
@@ -724,7 +724,7 @@
           7 &lt;= 7
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.int_seven &lt;= 8
         </Original>
@@ -732,7 +732,7 @@
           7 &lt;= 8
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.float_nine_point_one > 9
         </Original>
@@ -740,7 +740,7 @@
           9.1f > 9
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.float_nine_point_one &lt; 10
         </Original>
@@ -748,7 +748,7 @@
           9.1f &lt; 10
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.float_nine_point_one &lt; 9.2
         </Original>
@@ -756,7 +756,7 @@
           9.1f &lt; 9.2
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello &lt;= &quot;hello&quot;
         </Original>
@@ -764,7 +764,7 @@
           &quot;hello&quot; &lt;= &quot;hello&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello >= &quot;hello&quot;
         </Original>
@@ -772,7 +772,7 @@
           &quot;hello&quot; >= &quot;hello&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello &lt; &quot;hellp&quot;
         </Original>
@@ -780,7 +780,7 @@
           &quot;hello&quot; &lt; &quot;hellp&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello &lt; &quot;zebra&quot;
         </Original>
@@ -788,7 +788,7 @@
           &quot;hello&quot; &lt; &quot;zebra&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello > &quot;hellm&quot;
         </Original>
@@ -796,7 +796,7 @@
           &quot;hello&quot; > &quot;hellm&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello > &quot;a&quot;
         </Original>
@@ -807,7 +807,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Ordering comparison checks that should fail">
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.int_seven > 7
         </Original>
@@ -815,7 +815,7 @@
           7 > 7
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.int_seven &lt; 7
         </Original>
@@ -823,7 +823,7 @@
           7 &lt; 7
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.int_seven > 8
         </Original>
@@ -831,7 +831,7 @@
           7 > 8
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.int_seven &lt; 6
         </Original>
@@ -839,7 +839,7 @@
           7 &lt; 6
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.int_seven &lt; 0
         </Original>
@@ -847,7 +847,7 @@
           7 &lt; 0
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.int_seven &lt; -1
         </Original>
@@ -855,7 +855,7 @@
           7 &lt; -1
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.int_seven >= 8
         </Original>
@@ -863,7 +863,7 @@
           7 >= 8
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.int_seven &lt;= 6
         </Original>
@@ -871,7 +871,7 @@
           7 &lt;= 6
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.float_nine_point_one &lt; 9
         </Original>
@@ -879,7 +879,7 @@
           9.1f &lt; 9
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.float_nine_point_one > 10
         </Original>
@@ -887,7 +887,7 @@
           9.1f > 10
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.float_nine_point_one > 9.2
         </Original>
@@ -895,7 +895,7 @@
           9.1f > 9.2
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello > &quot;hello&quot;
         </Original>
@@ -903,7 +903,7 @@
           &quot;hello&quot; > &quot;hello&quot;
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello &lt; &quot;hello&quot;
         </Original>
@@ -911,7 +911,7 @@
           &quot;hello&quot; &lt; &quot;hello&quot;
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello > &quot;hellp&quot;
         </Original>
@@ -919,7 +919,7 @@
           &quot;hello&quot; > &quot;hellp&quot;
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello > &quot;z&quot;
         </Original>
@@ -927,7 +927,7 @@
           &quot;hello&quot; > &quot;z&quot;
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello &lt; &quot;hellm&quot;
         </Original>
@@ -935,7 +935,7 @@
           &quot;hello&quot; &lt; &quot;hellm&quot;
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello &lt; &quot;a&quot;
         </Original>
@@ -943,7 +943,7 @@
           &quot;hello&quot; &lt; &quot;a&quot;
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello >= &quot;z&quot;
         </Original>
@@ -951,7 +951,7 @@
           &quot;hello&quot; >= &quot;z&quot;
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           data.str_hello &lt;= &quot;a&quot;
         </Original>
@@ -962,7 +962,7 @@
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="Comparisons with int literals don't warn when mixing signed/ unsigned">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           i == 1
         </Original>
@@ -970,7 +970,7 @@
           1 == 1
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           ui == 2
         </Original>
@@ -978,7 +978,7 @@
           2 == 2
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           l == 3
         </Original>
@@ -986,7 +986,7 @@
           3 == 3
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           ul == 4
         </Original>
@@ -994,7 +994,7 @@
           4 == 4
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           c == 5
         </Original>
@@ -1002,7 +1002,7 @@
           5 == 5
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           uc == 6
         </Original>
@@ -1010,7 +1010,7 @@
           6 == 6
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           1 == i
         </Original>
@@ -1018,7 +1018,7 @@
           1 == 1
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           2 == ui
         </Original>
@@ -1026,7 +1026,7 @@
           2 == 2
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           3 == l
         </Original>
@@ -1034,7 +1034,7 @@
           3 == 3
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           4 == ul
         </Original>
@@ -1042,7 +1042,7 @@
           4 == 4
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           5 == c
         </Original>
@@ -1050,7 +1050,7 @@
           5 == 5
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           6 == uc
         </Original>
@@ -1058,7 +1058,7 @@
           6 == 6
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           (std::numeric_limits&lt;unsigned long>::max)() > ul
         </Original>
@@ -1069,7 +1069,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="comparisons between int variables">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           long_var == unsigned_char_var
         </Original>
@@ -1077,7 +1077,7 @@
           1 == 1
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           long_var == unsigned_short_var
         </Original>
@@ -1085,7 +1085,7 @@
           1 == 1
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           long_var == unsigned_int_var
         </Original>
@@ -1093,7 +1093,7 @@
           1 == 1
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           long_var == unsigned_long_var
         </Original>
@@ -1104,7 +1104,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="comparisons between const int variables">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           unsigned_char_var == 1
         </Original>
@@ -1112,7 +1112,7 @@
           1 == 1
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           unsigned_short_var == 1
         </Original>
@@ -1120,7 +1120,7 @@
           1 == 1
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           unsigned_int_var == 1
         </Original>
@@ -1128,7 +1128,7 @@
           1 == 1
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           unsigned_long_var == 1
         </Original>
@@ -1139,7 +1139,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Comparisons between unsigned ints and negative signed ints match c++ standard behaviour">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           ( -1 > 2u )
         </Original>
@@ -1147,7 +1147,7 @@
           true
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           -1 > 2u
         </Original>
@@ -1155,7 +1155,7 @@
           -1 > 2
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           ( 2u &lt; -1 )
         </Original>
@@ -1163,7 +1163,7 @@
           true
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           2u &lt; -1
         </Original>
@@ -1171,7 +1171,7 @@
           2 &lt; -1
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           ( minInt > 2u )
         </Original>
@@ -1179,7 +1179,7 @@
           true
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           minInt > 2u
         </Original>
@@ -1190,7 +1190,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Comparisons between ints where one side is computed">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           54 == 6*9
         </Original>
@@ -1201,7 +1201,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Pointers can be compared to null">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           p == __null
         </Original>
@@ -1209,7 +1209,7 @@
           __null == 0
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           p == pNULL
         </Original>
@@ -1217,7 +1217,7 @@
           __null == __null
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           p != __null
         </Original>
@@ -1225,7 +1225,7 @@
           0x<hex digits> != 0
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           cp != __null
         </Original>
@@ -1233,7 +1233,7 @@
           0x<hex digits> != 0
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           cpc != __null
         </Original>
@@ -1241,7 +1241,7 @@
           0x<hex digits> != 0
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           returnsNull() == __null
         </Original>
@@ -1249,7 +1249,7 @@
           {null string} == 0
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           returnsConstNull() == __null
         </Original>
@@ -1257,7 +1257,7 @@
           {null string} == 0
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           __null != p
         </Original>
@@ -1268,7 +1268,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="'Not' checks that should succeed">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           false == false
         </Original>
@@ -1276,7 +1276,7 @@
           false == false
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           true == true
         </Original>
@@ -1284,7 +1284,7 @@
           true == true
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           !false
         </Original>
@@ -1292,7 +1292,7 @@
           true
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           !false
         </Original>
@@ -1300,7 +1300,7 @@
           !false
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           !falseValue
         </Original>
@@ -1308,7 +1308,7 @@
           true
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           !falseValue
         </Original>
@@ -1316,7 +1316,7 @@
           !false
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           !(1 == 2)
         </Original>
@@ -1324,7 +1324,7 @@
           true
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           !1 == 2
         </Original>
@@ -1335,7 +1335,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="'Not' checks that should fail">
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           false != false
         </Original>
@@ -1343,7 +1343,7 @@
           false != false
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           true != true
         </Original>
@@ -1351,7 +1351,7 @@
           true != true
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           !true
         </Original>
@@ -1359,7 +1359,7 @@
           false
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           !true
         </Original>
@@ -1367,7 +1367,7 @@
           !true
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           !trueValue
         </Original>
@@ -1375,7 +1375,7 @@
           false
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           !trueValue
         </Original>
@@ -1383,7 +1383,7 @@
           !true
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           !(1 == 1)
         </Original>
@@ -1391,7 +1391,7 @@
           false
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ConditionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ConditionTests.cpp" >
         <Original>
           !1 == 1
         </Original>
@@ -1402,7 +1402,7 @@
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="When checked exceptions are thrown they can be expected or unexpected">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ExceptionTests.cpp" >
         <Original>
           thisThrows()
         </Original>
@@ -1410,7 +1410,7 @@
           thisThrows()
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ExceptionTests.cpp" >
         <Original>
           thisDoesntThrow()
         </Original>
@@ -1418,7 +1418,7 @@
           thisDoesntThrow()
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ExceptionTests.cpp" >
         <Original>
           thisThrows()
         </Original>
@@ -1429,18 +1429,18 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Expected exceptions that don't throw or unexpected exceptions fail the test">
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ExceptionTests.cpp" >
         <Original>
           thisThrows()
         </Original>
         <Expanded>
           thisThrows()
         </Expanded>
-        <Exception filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+        <Exception filename="projects/SelfTest/ExceptionTests.cpp" >
           expected exception
         </Exception>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ExceptionTests.cpp" >
         <Original>
           thisDoesntThrow()
         </Original>
@@ -1448,27 +1448,27 @@
           thisDoesntThrow()
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ExceptionTests.cpp" >
         <Original>
           thisThrows()
         </Original>
         <Expanded>
           thisThrows()
         </Expanded>
-        <Exception filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+        <Exception filename="projects/SelfTest/ExceptionTests.cpp" >
           expected exception
         </Exception>
       </Expression>
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="When unchecked exceptions are thrown directly they are always failures">
-      <Exception filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+      <Exception filename="projects/SelfTest/ExceptionTests.cpp" >
         unexpected exception
       </Exception>
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="An unchecked exception reports the line of the last assertion">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ExceptionTests.cpp" >
         <Original>
           1 == 1
         </Original>
@@ -1476,14 +1476,14 @@
           1 == 1
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ExceptionTests.cpp" >
         <Original>
           {Unknown expression after the reported line}
         </Original>
         <Expanded>
           {Unknown expression after the reported line}
         </Expanded>
-        <Exception filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+        <Exception filename="projects/SelfTest/ExceptionTests.cpp" >
           unexpected exception
         </Exception>
       </Expression>
@@ -1491,7 +1491,7 @@
     </TestCase>
     <TestCase name="When unchecked exceptions are thrown from sections they are always failures">
       <Section name="section name">
-        <Exception filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+        <Exception filename="projects/SelfTest/ExceptionTests.cpp" >
           unexpected exception
         </Exception>
         <OverallResults successes="0" failures="1" expectedFailures="0"/>
@@ -1499,42 +1499,42 @@
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="When unchecked exceptions are thrown from functions they are always failures">
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ExceptionTests.cpp" >
         <Original>
           thisThrows() == 0
         </Original>
         <Expanded>
           thisThrows() == 0
         </Expanded>
-        <Exception filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+        <Exception filename="projects/SelfTest/ExceptionTests.cpp" >
           expected exception
         </Exception>
       </Expression>
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="When unchecked exceptions are thrown during a REQUIRE the test should abort fail">
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ExceptionTests.cpp" >
         <Original>
           thisThrows() == 0
         </Original>
         <Expanded>
           thisThrows() == 0
         </Expanded>
-        <Exception filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+        <Exception filename="projects/SelfTest/ExceptionTests.cpp" >
           expected exception
         </Exception>
       </Expression>
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="When unchecked exceptions are thrown during a CHECK the test should abort and fail">
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ExceptionTests.cpp" >
         <Original>
           thisThrows() == 0
         </Original>
         <Expanded>
           thisThrows() == 0
         </Expanded>
-        <Exception filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+        <Exception filename="projects/SelfTest/ExceptionTests.cpp" >
           expected exception
         </Exception>
       </Expression>
@@ -1544,47 +1544,47 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Unexpected custom exceptions can be translated">
-      <Exception filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+      <Exception filename="projects/SelfTest/ExceptionTests.cpp" >
         custom exception
       </Exception>
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="Custom exceptions can be translated when testing for nothrow">
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ExceptionTests.cpp" >
         <Original>
           throwCustom()
         </Original>
         <Expanded>
           throwCustom()
         </Expanded>
-        <Exception filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+        <Exception filename="projects/SelfTest/ExceptionTests.cpp" >
           custom exception - not std
         </Exception>
       </Expression>
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="Custom exceptions can be translated when testing for throwing as something else">
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/ExceptionTests.cpp" >
         <Original>
           throwCustom()
         </Original>
         <Expanded>
           throwCustom()
         </Expanded>
-        <Exception filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+        <Exception filename="projects/SelfTest/ExceptionTests.cpp" >
           custom exception - not std
         </Exception>
       </Expression>
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="Unexpected exceptions can be translated">
-      <Exception filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+      <Exception filename="projects/SelfTest/ExceptionTests.cpp" >
         3.14
       </Exception>
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="NotImplemented exception">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ExceptionTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ExceptionTests.cpp" >
         <Original>
           thisFunctionNotImplemented( 7 )
         </Original>
@@ -1595,7 +1595,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Generators over two ranges">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -1603,7 +1603,7 @@
           2 == 2
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -1611,7 +1611,7 @@
           200 == 200
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -1619,7 +1619,7 @@
           4 == 4
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -1627,7 +1627,7 @@
           200 == 200
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -1635,7 +1635,7 @@
           6 == 6
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -1643,7 +1643,7 @@
           200 == 200
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -1651,7 +1651,7 @@
           8 == 8
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -1659,7 +1659,7 @@
           200 == 200
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -1667,7 +1667,7 @@
           10 == 10
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -1675,7 +1675,7 @@
           200 == 200
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -1683,7 +1683,7 @@
           30 == 30
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -1691,7 +1691,7 @@
           200 == 200
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -1699,7 +1699,7 @@
           40 == 40
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -1707,7 +1707,7 @@
           200 == 200
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -1715,7 +1715,7 @@
           42 == 42
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -1723,7 +1723,7 @@
           200 == 200
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -1731,7 +1731,7 @@
           72 == 72
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -1739,7 +1739,7 @@
           200 == 200
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -1747,7 +1747,7 @@
           2 == 2
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -1755,7 +1755,7 @@
           202 == 202
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -1763,7 +1763,7 @@
           4 == 4
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -1771,7 +1771,7 @@
           202 == 202
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -1779,7 +1779,7 @@
           6 == 6
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -1787,7 +1787,7 @@
           202 == 202
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -1795,7 +1795,7 @@
           8 == 8
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -1803,7 +1803,7 @@
           202 == 202
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -1811,7 +1811,7 @@
           10 == 10
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -1819,7 +1819,7 @@
           202 == 202
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -1827,7 +1827,7 @@
           30 == 30
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -1835,7 +1835,7 @@
           202 == 202
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -1843,7 +1843,7 @@
           40 == 40
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -1851,7 +1851,7 @@
           202 == 202
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -1859,7 +1859,7 @@
           42 == 42
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -1867,7 +1867,7 @@
           202 == 202
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -1875,7 +1875,7 @@
           72 == 72
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -1883,7 +1883,7 @@
           202 == 202
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -1891,7 +1891,7 @@
           2 == 2
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -1899,7 +1899,7 @@
           204 == 204
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -1907,7 +1907,7 @@
           4 == 4
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -1915,7 +1915,7 @@
           204 == 204
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -1923,7 +1923,7 @@
           6 == 6
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -1931,7 +1931,7 @@
           204 == 204
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -1939,7 +1939,7 @@
           8 == 8
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -1947,7 +1947,7 @@
           204 == 204
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -1955,7 +1955,7 @@
           10 == 10
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -1963,7 +1963,7 @@
           204 == 204
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -1971,7 +1971,7 @@
           30 == 30
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -1979,7 +1979,7 @@
           204 == 204
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -1987,7 +1987,7 @@
           40 == 40
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -1995,7 +1995,7 @@
           204 == 204
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2003,7 +2003,7 @@
           42 == 42
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2011,7 +2011,7 @@
           204 == 204
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2019,7 +2019,7 @@
           72 == 72
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2027,7 +2027,7 @@
           204 == 204
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2035,7 +2035,7 @@
           2 == 2
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2043,7 +2043,7 @@
           206 == 206
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2051,7 +2051,7 @@
           4 == 4
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2059,7 +2059,7 @@
           206 == 206
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2067,7 +2067,7 @@
           6 == 6
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2075,7 +2075,7 @@
           206 == 206
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2083,7 +2083,7 @@
           8 == 8
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2091,7 +2091,7 @@
           206 == 206
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2099,7 +2099,7 @@
           10 == 10
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2107,7 +2107,7 @@
           206 == 206
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2115,7 +2115,7 @@
           30 == 30
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2123,7 +2123,7 @@
           206 == 206
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2131,7 +2131,7 @@
           40 == 40
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2139,7 +2139,7 @@
           206 == 206
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2147,7 +2147,7 @@
           42 == 42
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2155,7 +2155,7 @@
           206 == 206
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2163,7 +2163,7 @@
           72 == 72
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2171,7 +2171,7 @@
           206 == 206
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2179,7 +2179,7 @@
           2 == 2
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2187,7 +2187,7 @@
           208 == 208
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2195,7 +2195,7 @@
           4 == 4
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2203,7 +2203,7 @@
           208 == 208
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2211,7 +2211,7 @@
           6 == 6
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2219,7 +2219,7 @@
           208 == 208
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2227,7 +2227,7 @@
           8 == 8
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2235,7 +2235,7 @@
           208 == 208
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2243,7 +2243,7 @@
           10 == 10
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2251,7 +2251,7 @@
           208 == 208
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2259,7 +2259,7 @@
           30 == 30
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2267,7 +2267,7 @@
           208 == 208
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2275,7 +2275,7 @@
           40 == 40
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2283,7 +2283,7 @@
           208 == 208
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2291,7 +2291,7 @@
           42 == 42
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2299,7 +2299,7 @@
           208 == 208
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2307,7 +2307,7 @@
           72 == 72
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2315,7 +2315,7 @@
           208 == 208
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2323,7 +2323,7 @@
           2 == 2
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2331,7 +2331,7 @@
           210 == 210
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2339,7 +2339,7 @@
           4 == 4
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2347,7 +2347,7 @@
           210 == 210
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2355,7 +2355,7 @@
           6 == 6
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2363,7 +2363,7 @@
           210 == 210
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2371,7 +2371,7 @@
           8 == 8
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2379,7 +2379,7 @@
           210 == 210
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2387,7 +2387,7 @@
           10 == 10
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2395,7 +2395,7 @@
           210 == 210
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2403,7 +2403,7 @@
           30 == 30
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2411,7 +2411,7 @@
           210 == 210
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2419,7 +2419,7 @@
           40 == 40
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2427,7 +2427,7 @@
           210 == 210
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2435,7 +2435,7 @@
           42 == 42
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2443,7 +2443,7 @@
           210 == 210
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2451,7 +2451,7 @@
           72 == 72
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2459,7 +2459,7 @@
           210 == 210
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2467,7 +2467,7 @@
           2 == 2
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2475,7 +2475,7 @@
           212 == 212
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2483,7 +2483,7 @@
           4 == 4
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2491,7 +2491,7 @@
           212 == 212
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2499,7 +2499,7 @@
           6 == 6
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2507,7 +2507,7 @@
           212 == 212
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2515,7 +2515,7 @@
           8 == 8
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2523,7 +2523,7 @@
           212 == 212
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2531,7 +2531,7 @@
           10 == 10
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2539,7 +2539,7 @@
           212 == 212
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2547,7 +2547,7 @@
           30 == 30
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2555,7 +2555,7 @@
           212 == 212
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2563,7 +2563,7 @@
           40 == 40
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2571,7 +2571,7 @@
           212 == 212
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2579,7 +2579,7 @@
           42 == 42
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2587,7 +2587,7 @@
           212 == 212
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2595,7 +2595,7 @@
           72 == 72
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2603,7 +2603,7 @@
           212 == 212
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2611,7 +2611,7 @@
           2 == 2
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2619,7 +2619,7 @@
           214 == 214
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2627,7 +2627,7 @@
           4 == 4
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2635,7 +2635,7 @@
           214 == 214
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2643,7 +2643,7 @@
           6 == 6
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2651,7 +2651,7 @@
           214 == 214
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2659,7 +2659,7 @@
           8 == 8
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2667,7 +2667,7 @@
           214 == 214
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2675,7 +2675,7 @@
           10 == 10
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2683,7 +2683,7 @@
           214 == 214
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2691,7 +2691,7 @@
           30 == 30
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2699,7 +2699,7 @@
           214 == 214
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2707,7 +2707,7 @@
           40 == 40
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2715,7 +2715,7 @@
           214 == 214
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2723,7 +2723,7 @@
           42 == 42
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2731,7 +2731,7 @@
           214 == 214
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( i, 2 ) == i*2
         </Original>
@@ -2739,7 +2739,7 @@
           72 == 72
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           multiply( j, 2 ) == j*2
         </Original>
@@ -2750,7 +2750,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Generator over a range of pairs">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           i->first == i->second-1
         </Original>
@@ -2758,7 +2758,7 @@
           0 == 0
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/GeneratorTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/GeneratorTests.cpp" >
         <Original>
           i->first == i->second-1
         </Original>
@@ -2787,7 +2787,7 @@
       <Info>
         so should this
       </Info>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MessageTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/MessageTests.cpp" >
         <Original>
           a == 1
         </Original>
@@ -2798,7 +2798,7 @@
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="INFO gets logged on failure, even if captured before successful assertions">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MessageTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MessageTests.cpp" >
         <Original>
           a == 2
         </Original>
@@ -2809,7 +2809,7 @@
       <Info>
         this message should be logged
       </Info>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MessageTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/MessageTests.cpp" >
         <Original>
           a == 1
         </Original>
@@ -2820,7 +2820,7 @@
       <Info>
         and this, but later
       </Info>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MessageTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/MessageTests.cpp" >
         <Original>
           a == 0
         </Original>
@@ -2828,7 +2828,7 @@
           2 == 0
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MessageTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MessageTests.cpp" >
         <Original>
           a == 2
         </Original>
@@ -2876,7 +2876,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="SCOPED_INFO is reset for each loop">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MessageTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MessageTests.cpp" >
         <Original>
           i &lt; 10
         </Original>
@@ -2884,7 +2884,7 @@
           0 &lt; 10
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MessageTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MessageTests.cpp" >
         <Original>
           i &lt; 10
         </Original>
@@ -2892,7 +2892,7 @@
           1 &lt; 10
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MessageTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MessageTests.cpp" >
         <Original>
           i &lt; 10
         </Original>
@@ -2900,7 +2900,7 @@
           2 &lt; 10
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MessageTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MessageTests.cpp" >
         <Original>
           i &lt; 10
         </Original>
@@ -2908,7 +2908,7 @@
           3 &lt; 10
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MessageTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MessageTests.cpp" >
         <Original>
           i &lt; 10
         </Original>
@@ -2916,7 +2916,7 @@
           4 &lt; 10
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MessageTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MessageTests.cpp" >
         <Original>
           i &lt; 10
         </Original>
@@ -2924,7 +2924,7 @@
           5 &lt; 10
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MessageTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MessageTests.cpp" >
         <Original>
           i &lt; 10
         </Original>
@@ -2932,7 +2932,7 @@
           6 &lt; 10
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MessageTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MessageTests.cpp" >
         <Original>
           i &lt; 10
         </Original>
@@ -2940,7 +2940,7 @@
           7 &lt; 10
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MessageTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MessageTests.cpp" >
         <Original>
           i &lt; 10
         </Original>
@@ -2948,7 +2948,7 @@
           8 &lt; 10
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MessageTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MessageTests.cpp" >
         <Original>
           i &lt; 10
         </Original>
@@ -2962,7 +2962,7 @@
       <Info>
         i := 10
       </Info>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MessageTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/MessageTests.cpp" >
         <Original>
           i &lt; 10
         </Original>
@@ -2973,7 +2973,7 @@
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="The NO_FAIL macro reports a failure but does not fail the test">
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MessageTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/MessageTests.cpp" >
         <Original>
           1 == 2
         </Original>
@@ -2999,7 +2999,7 @@
       <Info>
         i := 7
       </Info>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MessageTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/MessageTests.cpp" >
         <Original>
           false
         </Original>
@@ -3020,7 +3020,7 @@
     </TestCase>
     <TestCase name="random SECTION tests">
       <Section name="s1" description="doesn't equal">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
           <Original>
             a != b
           </Original>
@@ -3028,7 +3028,7 @@
             1 != 2
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
           <Original>
             b != a
           </Original>
@@ -3039,7 +3039,7 @@
         <OverallResults successes="2" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="s2" description="not equal">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
           <Original>
             a != b
           </Original>
@@ -3053,7 +3053,7 @@
     </TestCase>
     <TestCase name="nested SECTION tests">
       <Section name="s1" description="doesn't equal">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
           <Original>
             a != b
           </Original>
@@ -3061,7 +3061,7 @@
             1 != 2
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
           <Original>
             b != a
           </Original>
@@ -3070,7 +3070,7 @@
           </Expanded>
         </Expression>
         <Section name="s2" description="not equal">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+          <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
             <Original>
               a != b
             </Original>
@@ -3087,7 +3087,7 @@
     <TestCase name="more nested SECTION tests">
       <Section name="s1" description="doesn't equal">
         <Section name="s2" description="equal">
-          <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+          <Expression success="false" filename="projects/SelfTest/MiscTests.cpp" >
             <Original>
               a == b
             </Original>
@@ -3121,7 +3121,7 @@
     </TestCase>
     <TestCase name="looped SECTION tests">
       <Section name="s1" description="b is currently: 0">
-        <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+        <Expression success="false" filename="projects/SelfTest/MiscTests.cpp" >
           <Original>
             b > a
           </Original>
@@ -3137,7 +3137,7 @@
       <Info>
         Testing if fib[0] (1) is even
       </Info>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           ( fib[i] % 2 ) == 0
         </Original>
@@ -3148,7 +3148,7 @@
       <Info>
         Testing if fib[1] (1) is even
       </Info>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           ( fib[i] % 2 ) == 0
         </Original>
@@ -3156,7 +3156,7 @@
           1 == 0
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           ( fib[i] % 2 ) == 0
         </Original>
@@ -3167,7 +3167,7 @@
       <Info>
         Testing if fib[3] (3) is even
       </Info>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           ( fib[i] % 2 ) == 0
         </Original>
@@ -3178,7 +3178,7 @@
       <Info>
         Testing if fib[4] (5) is even
       </Info>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           ( fib[i] % 2 ) == 0
         </Original>
@@ -3186,7 +3186,7 @@
           1 == 0
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           ( fib[i] % 2 ) == 0
         </Original>
@@ -3197,7 +3197,7 @@
       <Info>
         Testing if fib[6] (13) is even
       </Info>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           ( fib[i] % 2 ) == 0
         </Original>
@@ -3208,7 +3208,7 @@
       <Info>
         Testing if fib[7] (21) is even
       </Info>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           ( fib[i] % 2 ) == 0
         </Original>
@@ -3222,7 +3222,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="null strings">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           makeString( false ) != static_cast&lt;char*>(__null)
         </Original>
@@ -3230,7 +3230,7 @@
           &quot;valid string&quot; != {null string}
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           makeString( true ) == static_cast&lt;char*>(__null)
         </Original>
@@ -3241,7 +3241,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="checkedIf">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           flag
         </Original>
@@ -3249,7 +3249,7 @@
           true
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           testCheckedIf( true )
         </Original>
@@ -3260,7 +3260,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="checkedIf, failing">
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           flag
         </Original>
@@ -3268,7 +3268,7 @@
           false
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           testCheckedIf( false )
         </Original>
@@ -3279,7 +3279,7 @@
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="checkedElse">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           flag
         </Original>
@@ -3287,7 +3287,7 @@
           true
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           testCheckedElse( true )
         </Original>
@@ -3298,7 +3298,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="checkedElse, failing">
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           flag
         </Original>
@@ -3306,7 +3306,7 @@
           false
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           testCheckedElse( false )
         </Original>
@@ -3329,7 +3329,7 @@
       <Info>
         3
       </Info>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           false
         </Original>
@@ -3340,7 +3340,7 @@
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="atomic if">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           x == 0
         </Original>
@@ -3351,7 +3351,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="String matchers">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           testStringForMatching() Contains( &quot;string&quot; )
         </Original>
@@ -3359,7 +3359,7 @@
           &quot;this string contains 'abc' as a substring&quot; contains: &quot;string&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           testStringForMatching() Contains( &quot;abc&quot; )
         </Original>
@@ -3367,7 +3367,7 @@
           &quot;this string contains 'abc' as a substring&quot; contains: &quot;abc&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           testStringForMatching() StartsWith( &quot;this&quot; )
         </Original>
@@ -3375,7 +3375,7 @@
           &quot;this string contains 'abc' as a substring&quot; starts with: &quot;this&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           testStringForMatching() EndsWith( &quot;substring&quot; )
         </Original>
@@ -3386,7 +3386,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Contains string matcher">
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           testStringForMatching() Contains( &quot;not there&quot; )
         </Original>
@@ -3397,7 +3397,7 @@
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="StartsWith string matcher">
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           testStringForMatching() StartsWith( &quot;string&quot; )
         </Original>
@@ -3408,7 +3408,7 @@
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="EndsWith string matcher">
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           testStringForMatching() EndsWith( &quot;this&quot; )
         </Original>
@@ -3419,7 +3419,7 @@
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="Equals string matcher">
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           testStringForMatching() Equals( &quot;something else&quot; )
         </Original>
@@ -3430,7 +3430,7 @@
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="Equals string matcher, with NULL">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           &quot;&quot; Equals(__null)
         </Original>
@@ -3441,7 +3441,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="AllOf matcher">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           testStringForMatching() AllOf( Catch::Contains( &quot;string&quot; ), Catch::Contains( &quot;abc&quot; ) )
         </Original>
@@ -3452,7 +3452,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="AnyOf matcher">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           testStringForMatching() AnyOf( Catch::Contains( &quot;string&quot; ), Catch::Contains( &quot;not there&quot; ) )
         </Original>
@@ -3460,7 +3460,7 @@
           &quot;this string contains 'abc' as a substring&quot; ( contains: &quot;string&quot; or contains: &quot;not there&quot; )
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           testStringForMatching() AnyOf( Catch::Contains( &quot;not there&quot; ), Catch::Contains( &quot;string&quot; ) )
         </Original>
@@ -3471,7 +3471,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Equals">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           testStringForMatching() Equals( &quot;this string contains 'abc' as a substring&quot; )
         </Original>
@@ -3482,7 +3482,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Factorials are computed">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           Factorial(0) == 1
         </Original>
@@ -3490,7 +3490,7 @@
           1 == 1
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           Factorial(1) == 1
         </Original>
@@ -3498,7 +3498,7 @@
           1 == 1
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           Factorial(2) == 2
         </Original>
@@ -3506,7 +3506,7 @@
           2 == 2
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           Factorial(3) == 6
         </Original>
@@ -3514,7 +3514,7 @@
           6 == 6
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           Factorial(10) == 3628800
         </Original>
@@ -3540,7 +3540,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="vectors can be sized and resized">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           v.size() == 5
         </Original>
@@ -3548,7 +3548,7 @@
           5 == 5
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           v.capacity() >= 5
         </Original>
@@ -3557,7 +3557,7 @@
         </Expanded>
       </Expression>
       <Section name="resizing bigger changes size and capacity">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
           <Original>
             v.size() == 10
           </Original>
@@ -3565,7 +3565,7 @@
             10 == 10
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
           <Original>
             v.capacity() >= 10
           </Original>
@@ -3575,7 +3575,7 @@
         </Expression>
         <OverallResults successes="2" failures="0" expectedFailures="0"/>
       </Section>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           v.size() == 5
         </Original>
@@ -3583,7 +3583,7 @@
           5 == 5
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           v.capacity() >= 5
         </Original>
@@ -3592,7 +3592,7 @@
         </Expanded>
       </Expression>
       <Section name="resizing smaller changes size but not capacity">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
           <Original>
             v.size() == 0
           </Original>
@@ -3600,7 +3600,7 @@
             0 == 0
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
           <Original>
             v.capacity() >= 5
           </Original>
@@ -3609,7 +3609,7 @@
           </Expanded>
         </Expression>
         <Section name="We can use the 'swap trick' to reset the capacity">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+          <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
             <Original>
               v.capacity() == 0
             </Original>
@@ -3621,7 +3621,7 @@
         </Section>
         <OverallResults successes="3" failures="0" expectedFailures="0"/>
       </Section>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           v.size() == 5
         </Original>
@@ -3629,7 +3629,7 @@
           5 == 5
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           v.capacity() >= 5
         </Original>
@@ -3638,7 +3638,7 @@
         </Expanded>
       </Expression>
       <Section name="reserving bigger changes capacity but not size">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
           <Original>
             v.size() == 5
           </Original>
@@ -3646,7 +3646,7 @@
             5 == 5
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
           <Original>
             v.capacity() >= 10
           </Original>
@@ -3656,7 +3656,7 @@
         </Expression>
         <OverallResults successes="2" failures="0" expectedFailures="0"/>
       </Section>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           v.size() == 5
         </Original>
@@ -3664,7 +3664,7 @@
           5 == 5
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           v.capacity() >= 5
         </Original>
@@ -3673,7 +3673,7 @@
         </Expanded>
       </Expression>
       <Section name="reserving smaller does not change size or capacity">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
           <Original>
             v.size() == 5
           </Original>
@@ -3681,7 +3681,7 @@
             5 == 5
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
           <Original>
             v.capacity() >= 5
           </Original>
@@ -3709,7 +3709,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Tabs and newlines show in output">
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           s1 == s2
         </Original>
@@ -3727,7 +3727,7 @@
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="toString on const wchar_t const pointer returns the string contents">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           result == &quot;\&quot;wide load\&quot;&quot;
         </Original>
@@ -3738,7 +3738,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="toString on const wchar_t pointer returns the string contents">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           result == &quot;\&quot;wide load\&quot;&quot;
         </Original>
@@ -3749,7 +3749,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="toString on wchar_t const pointer returns the string contents">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           result == &quot;\&quot;wide load\&quot;&quot;
         </Original>
@@ -3760,7 +3760,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="toString on wchar_t returns the string contents">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/MiscTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/MiscTests.cpp" >
         <Original>
           result == &quot;\&quot;wide load\&quot;&quot;
         </Original>
@@ -3772,7 +3772,7 @@
     </TestCase>
     <TestCase name="Process can be configured on command line">
       <Section name="default - no arguments">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+        <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
           <Original>
             parseIntoConfig( argv, config )
           </Original>
@@ -3780,7 +3780,7 @@
             parseIntoConfig( argv, config )
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+        <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
           <Original>
             config.shouldDebugBreak == false
           </Original>
@@ -3788,7 +3788,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+        <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
           <Original>
             config.abortAfter == -1
           </Original>
@@ -3796,7 +3796,7 @@
             -1 == -1
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+        <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
           <Original>
             config.noThrow == false
           </Original>
@@ -3804,7 +3804,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+        <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
           <Original>
             config.reporterName.empty()
           </Original>
@@ -3816,7 +3816,7 @@
       </Section>
       <Section name="test lists">
         <Section name="1 test" description="Specify one test case using">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               parseIntoConfig( argv, config )
             </Original>
@@ -3824,7 +3824,7 @@
               parseIntoConfig( argv, config )
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               cfg.testSpec().matches( fakeTestCase( &quot;notIncluded&quot; ) ) == false
             </Original>
@@ -3832,7 +3832,7 @@
               false == false
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               cfg.testSpec().matches( fakeTestCase( &quot;test1&quot; ) )
             </Original>
@@ -3846,7 +3846,7 @@
       </Section>
       <Section name="test lists">
         <Section name="Specify one test case exclusion using exclude:">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               parseIntoConfig( argv, config )
             </Original>
@@ -3854,7 +3854,7 @@
               parseIntoConfig( argv, config )
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               cfg.testSpec().matches( fakeTestCase( &quot;test1&quot; ) ) == false
             </Original>
@@ -3862,7 +3862,7 @@
               false == false
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               cfg.testSpec().matches( fakeTestCase( &quot;alwaysIncluded&quot; ) )
             </Original>
@@ -3876,7 +3876,7 @@
       </Section>
       <Section name="test lists">
         <Section name="Specify one test case exclusion using ~">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               parseIntoConfig( argv, config )
             </Original>
@@ -3884,7 +3884,7 @@
               parseIntoConfig( argv, config )
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               cfg.testSpec().matches( fakeTestCase( &quot;test1&quot; ) ) == false
             </Original>
@@ -3892,7 +3892,7 @@
               false == false
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               cfg.testSpec().matches( fakeTestCase( &quot;alwaysIncluded&quot; ) )
             </Original>
@@ -3906,7 +3906,7 @@
       </Section>
       <Section name="reporter">
         <Section name="-r/console">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               parseIntoConfig( argv, config )
             </Original>
@@ -3914,7 +3914,7 @@
               parseIntoConfig( argv, config )
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               config.reporterName == &quot;console&quot;
             </Original>
@@ -3928,7 +3928,7 @@
       </Section>
       <Section name="reporter">
         <Section name="-r/xml">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               parseIntoConfig( argv, config )
             </Original>
@@ -3936,7 +3936,7 @@
               parseIntoConfig( argv, config )
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               config.reporterName == &quot;xml&quot;
             </Original>
@@ -3950,7 +3950,7 @@
       </Section>
       <Section name="reporter">
         <Section name="--reporter/junit">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               parseIntoConfig( argv, config )
             </Original>
@@ -3958,7 +3958,7 @@
               parseIntoConfig( argv, config )
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               config.reporterName == &quot;junit&quot;
             </Original>
@@ -3972,7 +3972,7 @@
       </Section>
       <Section name="debugger">
         <Section name="-b">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               parseIntoConfig( argv, config )
             </Original>
@@ -3980,7 +3980,7 @@
               parseIntoConfig( argv, config )
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               config.shouldDebugBreak == true
             </Original>
@@ -3994,7 +3994,7 @@
       </Section>
       <Section name="debugger">
         <Section name="--break">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               parseIntoConfig( argv, config )
             </Original>
@@ -4002,7 +4002,7 @@
               parseIntoConfig( argv, config )
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               config.shouldDebugBreak
             </Original>
@@ -4016,7 +4016,7 @@
       </Section>
       <Section name="abort">
         <Section name="-a aborts after first failure">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               parseIntoConfig( argv, config )
             </Original>
@@ -4024,7 +4024,7 @@
               parseIntoConfig( argv, config )
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               config.abortAfter == 1
             </Original>
@@ -4038,7 +4038,7 @@
       </Section>
       <Section name="abort">
         <Section name="-x 2 aborts after two failures">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               parseIntoConfig( argv, config )
             </Original>
@@ -4046,7 +4046,7 @@
               parseIntoConfig( argv, config )
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               config.abortAfter == 2
             </Original>
@@ -4060,7 +4060,7 @@
       </Section>
       <Section name="abort">
         <Section name="-x must be greater than zero">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               parseIntoConfigAndReturnError( argv, config ) Contains( &quot;greater than zero&quot; )
             </Original>
@@ -4075,7 +4075,7 @@
       </Section>
       <Section name="abort">
         <Section name="-x must be numeric">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               parseIntoConfigAndReturnError( argv, config ) Contains( &quot;-x&quot; )
             </Original>
@@ -4090,7 +4090,7 @@
       </Section>
       <Section name="nothrow">
         <Section name="-e">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               parseIntoConfig( argv, config )
             </Original>
@@ -4098,7 +4098,7 @@
               parseIntoConfig( argv, config )
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               config.noThrow == true
             </Original>
@@ -4112,7 +4112,7 @@
       </Section>
       <Section name="nothrow">
         <Section name="--nothrow">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               parseIntoConfig( argv, config )
             </Original>
@@ -4120,7 +4120,7 @@
               parseIntoConfig( argv, config )
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               config.noThrow == true
             </Original>
@@ -4134,7 +4134,7 @@
       </Section>
       <Section name="output filename">
         <Section name="-o filename">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               parseIntoConfig( argv, config )
             </Original>
@@ -4142,7 +4142,7 @@
               parseIntoConfig( argv, config )
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               config.outputFilename == &quot;filename.ext&quot;
             </Original>
@@ -4156,7 +4156,7 @@
       </Section>
       <Section name="output filename">
         <Section name="--out">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               parseIntoConfig( argv, config )
             </Original>
@@ -4164,7 +4164,7 @@
               parseIntoConfig( argv, config )
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               config.outputFilename == &quot;filename.ext&quot;
             </Original>
@@ -4178,7 +4178,7 @@
       </Section>
       <Section name="combinations">
         <Section name="Single character flags can be combined">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               parseIntoConfig( argv, config )
             </Original>
@@ -4186,7 +4186,7 @@
               parseIntoConfig( argv, config )
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               config.abortAfter == 1
             </Original>
@@ -4194,7 +4194,7 @@
               1 == 1
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               config.shouldDebugBreak
             </Original>
@@ -4202,7 +4202,7 @@
               true
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               config.noThrow == true
             </Original>
@@ -4219,7 +4219,7 @@
     <TestCase name="Long strings can be wrapped">
       <Section name="plain string">
         <Section name="No wrapping">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( testString, TextAttributes().setWidth( 80 ) ).toString() == testString
             </Original>
@@ -4229,7 +4229,7 @@
 &quot;one two three four&quot;
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( testString, TextAttributes().setWidth( 18 ) ).toString() == testString
             </Original>
@@ -4245,7 +4245,7 @@
       </Section>
       <Section name="plain string">
         <Section name="Wrapped once">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( testString, TextAttributes().setWidth( 17 ) ).toString() == &quot;one two three\nfour&quot;
             </Original>
@@ -4257,7 +4257,7 @@
 four&quot;
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( testString, TextAttributes().setWidth( 16 ) ).toString() == &quot;one two three\nfour&quot;
             </Original>
@@ -4269,7 +4269,7 @@
 four&quot;
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( testString, TextAttributes().setWidth( 14 ) ).toString() == &quot;one two three\nfour&quot;
             </Original>
@@ -4281,7 +4281,7 @@
 four&quot;
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( testString, TextAttributes().setWidth( 13 ) ).toString() == &quot;one two three\nfour&quot;
             </Original>
@@ -4293,7 +4293,7 @@
 four&quot;
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( testString, TextAttributes().setWidth( 12 ) ).toString() == &quot;one two\nthree four&quot;
             </Original>
@@ -4311,7 +4311,7 @@
       </Section>
       <Section name="plain string">
         <Section name="Wrapped twice">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( testString, TextAttributes().setWidth( 9 ) ).toString() == &quot;one two\nthree\nfour&quot;
             </Original>
@@ -4325,7 +4325,7 @@
 four&quot;
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( testString, TextAttributes().setWidth( 8 ) ).toString() == &quot;one two\nthree\nfour&quot;
             </Original>
@@ -4339,7 +4339,7 @@
 four&quot;
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( testString, TextAttributes().setWidth( 7 ) ).toString() == &quot;one two\nthree\nfour&quot;
             </Original>
@@ -4359,7 +4359,7 @@
       </Section>
       <Section name="plain string">
         <Section name="Wrapped three times">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( testString, TextAttributes().setWidth( 6 ) ).toString() == &quot;one\ntwo\nthree\nfour&quot;
             </Original>
@@ -4375,7 +4375,7 @@
 four&quot;
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( testString, TextAttributes().setWidth( 5 ) ).toString() == &quot;one\ntwo\nthree\nfour&quot;
             </Original>
@@ -4397,7 +4397,7 @@
       </Section>
       <Section name="plain string">
         <Section name="Short wrap">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( &quot;abcdef&quot;, TextAttributes().setWidth( 4 ) ).toString() == &quot;abc-\ndef&quot;
             </Original>
@@ -4409,7 +4409,7 @@
 def&quot;
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( &quot;abcdefg&quot;, TextAttributes().setWidth( 4 ) ).toString() == &quot;abc-\ndefg&quot;
             </Original>
@@ -4421,7 +4421,7 @@
 defg&quot;
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( &quot;abcdefgh&quot;, TextAttributes().setWidth( 4 ) ).toString() == &quot;abc-\ndef-\ngh&quot;
             </Original>
@@ -4435,7 +4435,7 @@
 gh&quot;
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( testString, TextAttributes().setWidth( 4 ) ).toString() == &quot;one\ntwo\nthr-\nee\nfour&quot;
             </Original>
@@ -4453,7 +4453,7 @@
 four&quot;
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( testString, TextAttributes().setWidth( 3 ) ).toString() == &quot;one\ntwo\nth-\nree\nfo-\nur&quot;
             </Original>
@@ -4479,7 +4479,7 @@
       </Section>
       <Section name="plain string">
         <Section name="As container">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               text.size() == 4
             </Original>
@@ -4487,7 +4487,7 @@
               4 == 4
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               text[0] == &quot;one&quot;
             </Original>
@@ -4495,7 +4495,7 @@
               &quot;one&quot; == &quot;one&quot;
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               text[1] == &quot;two&quot;
             </Original>
@@ -4503,7 +4503,7 @@
               &quot;two&quot; == &quot;two&quot;
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               text[2] == &quot;three&quot;
             </Original>
@@ -4511,7 +4511,7 @@
               &quot;three&quot; == &quot;three&quot;
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               text[3] == &quot;four&quot;
             </Original>
@@ -4525,7 +4525,7 @@
       </Section>
       <Section name="plain string">
         <Section name="Indent first line differently">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               text.toString() == &quot; one two\n    three\n    four&quot;
             </Original>
@@ -4545,7 +4545,7 @@
       </Section>
       <Section name="With newlines">
         <Section name="No wrapping">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( testString, TextAttributes().setWidth( 80 ) ).toString() == testString
             </Original>
@@ -4557,7 +4557,7 @@
 three four&quot;
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( testString, TextAttributes().setWidth( 18 ) ).toString() == testString
             </Original>
@@ -4569,7 +4569,7 @@
 three four&quot;
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( testString, TextAttributes().setWidth( 10 ) ).toString() == testString
             </Original>
@@ -4587,7 +4587,7 @@
       </Section>
       <Section name="With newlines">
         <Section name="Trailing newline">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( &quot;abcdef\n&quot;, TextAttributes().setWidth( 10 ) ).toString() == &quot;abcdef\n&quot;
             </Original>
@@ -4599,7 +4599,7 @@
 &quot;
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( &quot;abcdef&quot;, TextAttributes().setWidth( 6 ) ).toString() == &quot;abcdef&quot;
             </Original>
@@ -4607,7 +4607,7 @@
               &quot;abcdef&quot; == &quot;abcdef&quot;
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( &quot;abcdef\n&quot;, TextAttributes().setWidth( 6 ) ).toString() == &quot;abcdef\n&quot;
             </Original>
@@ -4625,7 +4625,7 @@
       </Section>
       <Section name="With newlines">
         <Section name="Wrapped once">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( testString, TextAttributes().setWidth( 9 ) ).toString() == &quot;one two\nthree\nfour&quot;
             </Original>
@@ -4639,7 +4639,7 @@
 four&quot;
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( testString, TextAttributes().setWidth( 8 ) ).toString() == &quot;one two\nthree\nfour&quot;
             </Original>
@@ -4653,7 +4653,7 @@
 four&quot;
             </Expanded>
           </Expression>
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( testString, TextAttributes().setWidth( 7 ) ).toString() == &quot;one two\nthree\nfour&quot;
             </Original>
@@ -4673,7 +4673,7 @@
       </Section>
       <Section name="With newlines">
         <Section name="Wrapped twice">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
             <Original>
               Text( testString, TextAttributes().setWidth( 6 ) ).toString() == &quot;one\ntwo\nthree\nfour&quot;
             </Original>
@@ -4694,7 +4694,7 @@
         <OverallResults successes="1" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="With tabs">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+        <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
           <Original>
             Text( testString, TextAttributes().setWidth( 15 ) ).toString() == &quot;one two three\n        four\n        five\n        six&quot;
           </Original>
@@ -4718,7 +4718,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Text can be formatted using the Text class">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+      <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
         <Original>
           Text( &quot;hi there&quot; ).toString() == &quot;hi there&quot;
         </Original>
@@ -4726,7 +4726,7 @@
           &quot;hi there&quot; == &quot;hi there&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+      <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
         <Original>
           Text( &quot;hi there&quot;, narrow ).toString() == &quot;hi\nthere&quot;
         </Original>
@@ -4741,7 +4741,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Long text is truncted">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TestMain.cpp" >
+      <Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
         <Original>
           t.toString() EndsWith( &quot;... message truncated due to excessive size&quot; )
         </Original>
@@ -5752,7 +5752,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Parsing a std::pair">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
         <Original>
           (std::pair&lt;int, int>( 1, 2 )) == aNicePair
         </Original>
@@ -5775,7 +5775,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="A failing expression with a non streamable type is still captured[failing]">
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/TrickyTests.cpp" >
         <Original>
           &amp;o1 == &amp;o2
         </Original>
@@ -5783,7 +5783,7 @@
           0x<hex digits> == 0x<hex digits>
         </Expanded>
       </Expression>
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/TrickyTests.cpp" >
         <Original>
           o1 == o2
         </Original>
@@ -5794,7 +5794,7 @@
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="string literals of different sizes can be compared[failing]">
-      <Expression success="false" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+      <Expression success="false" filename="projects/SelfTest/TrickyTests.cpp" >
         <Original>
           std::string( &quot;first&quot; ) == &quot;second&quot;
         </Original>
@@ -5805,7 +5805,7 @@
       <OverallResult success="false"/>
     </TestCase>
     <TestCase name="An expression with side-effects should only be evaluated once">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
         <Original>
           i++ == 7
         </Original>
@@ -5813,7 +5813,7 @@
           7 == 7
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
         <Original>
           i++ == 8
         </Original>
@@ -5824,7 +5824,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Operators at different namespace levels not hijacked by Koenig lookup">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
         <Original>
           0x<hex digits> == o
         </Original>
@@ -5835,7 +5835,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Demonstrate that a non-const == is not used">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
         <Original>
           t == 1u
         </Original>
@@ -5846,7 +5846,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Test enum bit values">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
         <Original>
           0x<hex digits> == bit30and31
         </Original>
@@ -5857,7 +5857,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="boolean member">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
         <Original>
           obj.prop != __null
         </Original>
@@ -5869,7 +5869,7 @@
     </TestCase>
     <TestCase name="(unimplemented) static bools can be evaluated">
       <Section name="compare to true">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
           <Original>
             is_true&lt;true>::value == true
           </Original>
@@ -5877,7 +5877,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
           <Original>
             true == is_true&lt;true>::value
           </Original>
@@ -5888,7 +5888,7 @@
         <OverallResults successes="2" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="compare to false">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
           <Original>
             is_true&lt;false>::value == false
           </Original>
@@ -5896,7 +5896,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
           <Original>
             false == is_true&lt;false>::value
           </Original>
@@ -5907,7 +5907,7 @@
         <OverallResults successes="2" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="negation">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
           <Original>
             !is_true&lt;false>::value
           </Original>
@@ -5918,7 +5918,7 @@
         <OverallResults successes="1" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="double negation">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
           <Original>
             !!is_true&lt;true>::value
           </Original>
@@ -5929,7 +5929,7 @@
         <OverallResults successes="1" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="direct">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
           <Original>
             is_true&lt;true>::value
           </Original>
@@ -5937,7 +5937,7 @@
             true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
           <Original>
             !is_true&lt;false>::value
           </Original>
@@ -5950,7 +5950,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Objects that evaluated in boolean contexts can be checked">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
         <Original>
           True
         </Original>
@@ -5958,7 +5958,7 @@
           true
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
         <Original>
           !False
         </Original>
@@ -5966,7 +5966,7 @@
           true
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
         <Original>
           !False
         </Original>
@@ -5977,7 +5977,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Assertions then sections">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
         <Original>
           Catch::alwaysTrue()
         </Original>
@@ -5986,7 +5986,7 @@
         </Expanded>
       </Expression>
       <Section name="A section">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
           <Original>
             Catch::alwaysTrue()
           </Original>
@@ -5995,7 +5995,7 @@
           </Expanded>
         </Expression>
         <Section name="Another section">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
             <Original>
               Catch::alwaysTrue()
             </Original>
@@ -6007,7 +6007,7 @@
         </Section>
         <OverallResults successes="2" failures="0" expectedFailures="0"/>
       </Section>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
         <Original>
           Catch::alwaysTrue()
         </Original>
@@ -6016,7 +6016,7 @@
         </Expanded>
       </Expression>
       <Section name="A section">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
           <Original>
             Catch::alwaysTrue()
           </Original>
@@ -6025,7 +6025,7 @@
           </Expanded>
         </Expression>
         <Section name="Another other section">
-          <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+          <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
             <Original>
               Catch::alwaysTrue()
             </Original>
@@ -6040,7 +6040,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="non streamable - with conv. op">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
         <Original>
           s == &quot;7&quot;
         </Original>
@@ -6051,7 +6051,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Comparing function pointers">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
         <Original>
           a
         </Original>
@@ -6059,7 +6059,7 @@
           true
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
         <Original>
           a == &amp;foo
         </Original>
@@ -6070,7 +6070,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="Comparing member function pointers">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
         <Original>
           m == &amp;S::f
         </Original>
@@ -6083,7 +6083,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="pointer to class">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
         <Original>
           p == 0
         </Original>
@@ -6094,7 +6094,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="null_ptr">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TrickyTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/TrickyTests.cpp" >
         <Original>
           ptr.get() == nullptr
         </Original>
@@ -6117,7 +6117,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="toString( has_toString )">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ToStringWhich.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ToStringWhich.cpp" >
         <Original>
           Catch::toString( item ) == &quot;toString( has_toString )&quot;
         </Original>
@@ -6130,7 +6130,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="toString( has_maker )">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ToStringWhich.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ToStringWhich.cpp" >
         <Original>
           Catch::toString( item ) == &quot;StringMaker&lt;has_maker>&quot;
         </Original>
@@ -6143,7 +6143,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="toString( has_maker_and_toString )">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ToStringWhich.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ToStringWhich.cpp" >
         <Original>
           Catch::toString( item ) == &quot;toString( has_maker_and_toString )&quot;
         </Original>
@@ -6156,7 +6156,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="toString( vectors&lt;has_toString )">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ToStringWhich.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ToStringWhich.cpp" >
         <Original>
           Catch::toString( v ) == &quot;{ {?} }&quot;
         </Original>
@@ -6167,7 +6167,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="toString( vectors&lt;has_maker )">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ToStringWhich.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ToStringWhich.cpp" >
         <Original>
           Catch::toString( v ) == &quot;{ StringMaker&lt;has_maker> }&quot;
         </Original>
@@ -6180,7 +6180,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="toString( vectors&lt;has_maker_and_toString )">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ToStringWhich.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ToStringWhich.cpp" >
         <Original>
           Catch::toString( v ) == &quot;{ StringMaker&lt;has_maker_and_toString> }&quot;
         </Original>
@@ -6193,7 +6193,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="std::pair&lt;int,std::string> -> toString">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ToStringPair.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ToStringPair.cpp" >
         <Original>
           Catch::toString( value ) == &quot;{ 34, \&quot;xyzzy\&quot; }&quot;
         </Original>
@@ -6204,7 +6204,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="std::pair&lt;int,const std::string> -> toString">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ToStringPair.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ToStringPair.cpp" >
         <Original>
           Catch::toString(value) == &quot;{ 34, \&quot;xyzzy\&quot; }&quot;
         </Original>
@@ -6215,7 +6215,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="std::vector&lt;std::pair&lt;std::string,int> > -> toString">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ToStringPair.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ToStringPair.cpp" >
         <Original>
           Catch::toString( pr ) == &quot;{ { \&quot;green\&quot;, 55 } }&quot;
         </Original>
@@ -6228,7 +6228,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="pair&lt;pair&lt;int,const char *,pair&lt;std::string,int> > -> toString">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ToStringPair.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ToStringPair.cpp" >
         <Original>
           Catch::toString( pair ) == &quot;{ { 42, \&quot;Arthur\&quot; }, { \&quot;Ford\&quot;, 24 } }&quot;
         </Original>
@@ -6241,7 +6241,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="vector&lt;int> -> toString">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ToStringVector.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ToStringVector.cpp" >
         <Original>
           Catch::toString(vv) == &quot;{  }&quot;
         </Original>
@@ -6249,7 +6249,7 @@
           &quot;{  }&quot; == &quot;{  }&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ToStringVector.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ToStringVector.cpp" >
         <Original>
           Catch::toString(vv) == &quot;{ 42 }&quot;
         </Original>
@@ -6257,7 +6257,7 @@
           &quot;{ 42 }&quot; == &quot;{ 42 }&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ToStringVector.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ToStringVector.cpp" >
         <Original>
           Catch::toString(vv) == &quot;{ 42, 512 }&quot;
         </Original>
@@ -6268,7 +6268,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="vector&lt;string> -> toString">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ToStringVector.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ToStringVector.cpp" >
         <Original>
           Catch::toString(vv) == &quot;{  }&quot;
         </Original>
@@ -6276,7 +6276,7 @@
           &quot;{  }&quot; == &quot;{  }&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ToStringVector.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ToStringVector.cpp" >
         <Original>
           Catch::toString(vv) == &quot;{ \&quot;hello\&quot; }&quot;
         </Original>
@@ -6284,7 +6284,7 @@
           &quot;{ &quot;hello&quot; }&quot; == &quot;{ &quot;hello&quot; }&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ToStringVector.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ToStringVector.cpp" >
         <Original>
           Catch::toString(vv) == &quot;{ \&quot;hello\&quot;, \&quot;world\&quot; }&quot;
         </Original>
@@ -6297,7 +6297,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="vector&lt;int,allocator> -> toString">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ToStringVector.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ToStringVector.cpp" >
         <Original>
           Catch::toString(vv) == &quot;{  }&quot;
         </Original>
@@ -6305,7 +6305,7 @@
           &quot;{  }&quot; == &quot;{  }&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ToStringVector.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ToStringVector.cpp" >
         <Original>
           Catch::toString(vv) == &quot;{ 42 }&quot;
         </Original>
@@ -6313,7 +6313,7 @@
           &quot;{ 42 }&quot; == &quot;{ 42 }&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ToStringVector.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ToStringVector.cpp" >
         <Original>
           Catch::toString(vv) == &quot;{ 42, 512 }&quot;
         </Original>
@@ -6324,7 +6324,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="vec&lt;vec&lt;string,alloc>> -> toString">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ToStringVector.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ToStringVector.cpp" >
         <Original>
           Catch::toString(v) == &quot;{  }&quot;
         </Original>
@@ -6332,7 +6332,7 @@
           &quot;{  }&quot; == &quot;{  }&quot;
         </Expanded>
       </Expression>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/ToStringVector.cpp" >
+      <Expression success="true" filename="projects/SelfTest/ToStringVector.cpp" >
         <Original>
           Catch::toString(v) == &quot;{ { \&quot;hello\&quot; }, { \&quot;world\&quot; } }&quot;
         </Original>
@@ -6346,7 +6346,7 @@
     </TestCase>
     <TestCase name="Parse test names and tags">
       <Section name="Empty test spec should have no filters">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == false
           </Original>
@@ -6354,7 +6354,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == false
           </Original>
@@ -6362,7 +6362,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == false
           </Original>
@@ -6373,7 +6373,7 @@
         <OverallResults successes="3" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="Test spec from empty string should have no filters">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == false
           </Original>
@@ -6381,7 +6381,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches(tcA ) == false
           </Original>
@@ -6389,7 +6389,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == false
           </Original>
@@ -6400,7 +6400,7 @@
         <OverallResults successes="3" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="Test spec from just a comma should have no filters">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == false
           </Original>
@@ -6408,7 +6408,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == false
           </Original>
@@ -6416,7 +6416,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == false
           </Original>
@@ -6427,7 +6427,7 @@
         <OverallResults successes="3" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="Test spec from name should have one filter">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -6435,7 +6435,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == false
           </Original>
@@ -6443,7 +6443,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == true
           </Original>
@@ -6454,7 +6454,7 @@
         <OverallResults successes="3" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="Test spec from quoted name should have one filter">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -6462,7 +6462,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == false
           </Original>
@@ -6470,7 +6470,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == true
           </Original>
@@ -6481,7 +6481,7 @@
         <OverallResults successes="3" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="Test spec from name should have one filter">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -6489,7 +6489,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == false
           </Original>
@@ -6497,7 +6497,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == true
           </Original>
@@ -6505,7 +6505,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcC ) == false
           </Original>
@@ -6516,7 +6516,7 @@
         <OverallResults successes="4" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="Wildcard at the start">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -6524,7 +6524,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == false
           </Original>
@@ -6532,7 +6532,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == false
           </Original>
@@ -6540,7 +6540,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcC ) == true
           </Original>
@@ -6548,7 +6548,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcD ) == false
           </Original>
@@ -6556,7 +6556,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             parseTestSpec( &quot;*a&quot; ).matches( tcA ) == true
           </Original>
@@ -6567,7 +6567,7 @@
         <OverallResults successes="6" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="Wildcard at the end">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -6575,7 +6575,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == false
           </Original>
@@ -6583,7 +6583,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == false
           </Original>
@@ -6591,7 +6591,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcC ) == true
           </Original>
@@ -6599,7 +6599,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcD ) == false
           </Original>
@@ -6607,7 +6607,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             parseTestSpec( &quot;a*&quot; ).matches( tcA ) == true
           </Original>
@@ -6618,7 +6618,7 @@
         <OverallResults successes="6" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="Wildcard at both ends">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -6626,7 +6626,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == false
           </Original>
@@ -6634,7 +6634,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == false
           </Original>
@@ -6642,7 +6642,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcC ) == true
           </Original>
@@ -6650,7 +6650,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcD ) == true
           </Original>
@@ -6658,7 +6658,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             parseTestSpec( &quot;*a*&quot; ).matches( tcA ) == true
           </Original>
@@ -6669,7 +6669,7 @@
         <OverallResults successes="6" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="Redundant wildcard at the start">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -6677,7 +6677,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == true
           </Original>
@@ -6685,7 +6685,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == false
           </Original>
@@ -6696,7 +6696,7 @@
         <OverallResults successes="3" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="Redundant wildcard at the end">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -6704,7 +6704,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == true
           </Original>
@@ -6712,7 +6712,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == false
           </Original>
@@ -6723,7 +6723,7 @@
         <OverallResults successes="3" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="Redundant wildcard at both ends">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -6731,7 +6731,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == true
           </Original>
@@ -6739,7 +6739,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == false
           </Original>
@@ -6750,7 +6750,7 @@
         <OverallResults successes="3" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="Wildcard at both ends, redundant at start">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -6758,7 +6758,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == false
           </Original>
@@ -6766,7 +6766,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == false
           </Original>
@@ -6774,7 +6774,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcC ) == true
           </Original>
@@ -6782,7 +6782,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcD ) == true
           </Original>
@@ -6793,7 +6793,7 @@
         <OverallResults successes="5" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="Just wildcard">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -6801,7 +6801,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == true
           </Original>
@@ -6809,7 +6809,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == true
           </Original>
@@ -6817,7 +6817,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcC ) == true
           </Original>
@@ -6825,7 +6825,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcD ) == true
           </Original>
@@ -6836,7 +6836,7 @@
         <OverallResults successes="5" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="Single tag">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -6844,7 +6844,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == false
           </Original>
@@ -6852,7 +6852,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == true
           </Original>
@@ -6860,7 +6860,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcC ) == false
           </Original>
@@ -6871,7 +6871,7 @@
         <OverallResults successes="4" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="Single tag, two matches">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -6879,7 +6879,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == false
           </Original>
@@ -6887,7 +6887,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == true
           </Original>
@@ -6895,7 +6895,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcC ) == true
           </Original>
@@ -6906,7 +6906,7 @@
         <OverallResults successes="4" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="Two tags">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -6914,7 +6914,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == false
           </Original>
@@ -6922,7 +6922,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == false
           </Original>
@@ -6930,7 +6930,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcC ) == true
           </Original>
@@ -6941,7 +6941,7 @@
         <OverallResults successes="4" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="Two tags, spare separated">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -6949,7 +6949,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == false
           </Original>
@@ -6957,7 +6957,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == false
           </Original>
@@ -6965,7 +6965,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcC ) == true
           </Original>
@@ -6976,7 +6976,7 @@
         <OverallResults successes="4" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="Wildcarded name and tag">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -6984,7 +6984,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == false
           </Original>
@@ -6992,7 +6992,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == false
           </Original>
@@ -7000,7 +7000,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcC ) == true
           </Original>
@@ -7008,7 +7008,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcD ) == false
           </Original>
@@ -7019,7 +7019,7 @@
         <OverallResults successes="5" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="Single tag exclusion">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -7027,7 +7027,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == true
           </Original>
@@ -7035,7 +7035,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == false
           </Original>
@@ -7043,7 +7043,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcC ) == true
           </Original>
@@ -7054,7 +7054,7 @@
         <OverallResults successes="4" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="One tag exclusion and one tag inclusion">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -7062,7 +7062,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == false
           </Original>
@@ -7070,7 +7070,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == true
           </Original>
@@ -7078,7 +7078,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcC ) == false
           </Original>
@@ -7089,7 +7089,7 @@
         <OverallResults successes="4" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="One tag exclusion and one wldcarded name inclusion">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -7097,7 +7097,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == false
           </Original>
@@ -7105,7 +7105,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == false
           </Original>
@@ -7113,7 +7113,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcC ) == false
           </Original>
@@ -7121,7 +7121,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcD ) == true
           </Original>
@@ -7132,7 +7132,7 @@
         <OverallResults successes="5" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="One tag exclusion, using exclude:, and one wldcarded name inclusion">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -7140,7 +7140,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == false
           </Original>
@@ -7148,7 +7148,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == false
           </Original>
@@ -7156,7 +7156,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcC ) == false
           </Original>
@@ -7164,7 +7164,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcD ) == true
           </Original>
@@ -7175,7 +7175,7 @@
         <OverallResults successes="5" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="name exclusion">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -7183,7 +7183,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == true
           </Original>
@@ -7191,7 +7191,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == false
           </Original>
@@ -7199,7 +7199,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcC ) == true
           </Original>
@@ -7207,7 +7207,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcD ) == true
           </Original>
@@ -7218,7 +7218,7 @@
         <OverallResults successes="5" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="wildcarded name exclusion">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -7226,7 +7226,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == true
           </Original>
@@ -7234,7 +7234,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == true
           </Original>
@@ -7242,7 +7242,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcC ) == false
           </Original>
@@ -7250,7 +7250,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcD ) == false
           </Original>
@@ -7261,7 +7261,7 @@
         <OverallResults successes="5" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="wildcarded name exclusion with tag inclusion">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -7269,7 +7269,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == true
           </Original>
@@ -7277,7 +7277,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == true
           </Original>
@@ -7285,7 +7285,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcC ) == true
           </Original>
@@ -7293,7 +7293,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcD ) == false
           </Original>
@@ -7304,7 +7304,7 @@
         <OverallResults successes="5" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="wildcarded name exclusion, using exclude:, with tag inclusion">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -7312,7 +7312,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == true
           </Original>
@@ -7320,7 +7320,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == true
           </Original>
@@ -7328,7 +7328,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcC ) == true
           </Original>
@@ -7336,7 +7336,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcD ) == false
           </Original>
@@ -7347,7 +7347,7 @@
         <OverallResults successes="5" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="two wildcarded names">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -7355,7 +7355,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == false
           </Original>
@@ -7363,7 +7363,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == false
           </Original>
@@ -7371,7 +7371,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcC ) == true
           </Original>
@@ -7379,7 +7379,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcD ) == false
           </Original>
@@ -7390,7 +7390,7 @@
         <OverallResults successes="5" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="empty tag">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == false
           </Original>
@@ -7398,7 +7398,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == false
           </Original>
@@ -7406,7 +7406,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == false
           </Original>
@@ -7414,7 +7414,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcC ) == false
           </Original>
@@ -7422,7 +7422,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcD ) == false
           </Original>
@@ -7433,7 +7433,7 @@
         <OverallResults successes="5" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="empty quoted name">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == false
           </Original>
@@ -7441,7 +7441,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == false
           </Original>
@@ -7449,7 +7449,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == false
           </Original>
@@ -7457,7 +7457,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcC ) == false
           </Original>
@@ -7465,7 +7465,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcD ) == false
           </Original>
@@ -7476,7 +7476,7 @@
         <OverallResults successes="5" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="quoted string followed by tag exclusion">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.hasFilters() == true
           </Original>
@@ -7484,7 +7484,7 @@
             true == true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcA ) == false
           </Original>
@@ -7492,7 +7492,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcB ) == false
           </Original>
@@ -7500,7 +7500,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcC ) == false
           </Original>
@@ -7508,7 +7508,7 @@
             false == false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/CmdLineTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/CmdLineTests.cpp" >
           <Original>
             spec.matches( tcD ) == true
           </Original>
@@ -7522,7 +7522,7 @@
     </TestCase>
     <TestCase name="Tag alias can be registered against tag patterns">
       <Section name="The same tag alias can only be registered once">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TagAliasTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/TagAliasTests.cpp" >
           <Original>
             what Contains( &quot;[@zzz]&quot; )
           </Original>
@@ -7532,7 +7532,7 @@
 	Redefined at file:10&quot; contains: &quot;[@zzz]&quot;
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TagAliasTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/TagAliasTests.cpp" >
           <Original>
             what Contains( &quot;file&quot; )
           </Original>
@@ -7542,7 +7542,7 @@
 	Redefined at file:10&quot; contains: &quot;file&quot;
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TagAliasTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/TagAliasTests.cpp" >
           <Original>
             what Contains( &quot;2&quot; )
           </Original>
@@ -7552,7 +7552,7 @@
 	Redefined at file:10&quot; contains: &quot;2&quot;
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TagAliasTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/TagAliasTests.cpp" >
           <Original>
             what Contains( &quot;10&quot; )
           </Original>
@@ -7565,7 +7565,7 @@
         <OverallResults successes="4" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="Tag aliases must be of the form [@name]">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TagAliasTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/TagAliasTests.cpp" >
           <Original>
             registry.add( &quot;[no ampersat]&quot;, &quot;&quot;, Catch::SourceLineInfo( &quot;file&quot;, 3 ) )
           </Original>
@@ -7573,7 +7573,7 @@
             registry.add( &quot;[no ampersat]&quot;, &quot;&quot;, Catch::SourceLineInfo( &quot;file&quot;, 3 ) )
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TagAliasTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/TagAliasTests.cpp" >
           <Original>
             registry.add( &quot;[the @ is not at the start]&quot;, &quot;&quot;, Catch::SourceLineInfo( &quot;file&quot;, 3 ) )
           </Original>
@@ -7581,7 +7581,7 @@
             registry.add( &quot;[the @ is not at the start]&quot;, &quot;&quot;, Catch::SourceLineInfo( &quot;file&quot;, 3 ) )
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TagAliasTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/TagAliasTests.cpp" >
           <Original>
             registry.add( &quot;@no square bracket at start]&quot;, &quot;&quot;, Catch::SourceLineInfo( &quot;file&quot;, 3 ) )
           </Original>
@@ -7589,7 +7589,7 @@
             registry.add( &quot;@no square bracket at start]&quot;, &quot;&quot;, Catch::SourceLineInfo( &quot;file&quot;, 3 ) )
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/TagAliasTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/TagAliasTests.cpp" >
           <Original>
             registry.add( &quot;[@no square bracket at end&quot;, &quot;&quot;, Catch::SourceLineInfo( &quot;file&quot;, 3 ) )
           </Original>
@@ -7617,7 +7617,7 @@
       <Section name="Given: This stuff exists">
         <Section name="When: I do this">
           <Section name="Then: it should do this">
-            <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/BDDTests.cpp" >
+            <Expression success="true" filename="projects/SelfTest/BDDTests.cpp" >
               <Original>
                 itDoesThis()
               </Original>
@@ -7626,7 +7626,7 @@
               </Expanded>
             </Expression>
             <Section name="And: do that">
-              <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/BDDTests.cpp" >
+              <Expression success="true" filename="projects/SelfTest/BDDTests.cpp" >
                 <Original>
                   itDoesThat()
                 </Original>
@@ -7646,7 +7646,7 @@
     </TestCase>
     <TestCase name="Scenario: Vector resizing affects size and capacity">
       <Section name="Given: an empty vector">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/BDDTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/BDDTests.cpp" >
           <Original>
             v.size() == 0
           </Original>
@@ -7656,7 +7656,7 @@
         </Expression>
         <Section name="When: it is made larger">
           <Section name="Then: the size and capacity go up">
-            <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/BDDTests.cpp" >
+            <Expression success="true" filename="projects/SelfTest/BDDTests.cpp" >
               <Original>
                 v.size() == 10
               </Original>
@@ -7664,7 +7664,7 @@
                 10 == 10
               </Expanded>
             </Expression>
-            <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/BDDTests.cpp" >
+            <Expression success="true" filename="projects/SelfTest/BDDTests.cpp" >
               <Original>
                 v.capacity() >= 10
               </Original>
@@ -7674,7 +7674,7 @@
             </Expression>
             <Section name="And when: it is made smaller again">
               <Section name="Then: the size goes down but the capacity stays the same">
-                <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/BDDTests.cpp" >
+                <Expression success="true" filename="projects/SelfTest/BDDTests.cpp" >
                   <Original>
                     v.size() == 5
                   </Original>
@@ -7682,7 +7682,7 @@
                     5 == 5
                   </Expanded>
                 </Expression>
-                <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/BDDTests.cpp" >
+                <Expression success="true" filename="projects/SelfTest/BDDTests.cpp" >
                   <Original>
                     v.capacity() >= 10
                   </Original>
@@ -7701,7 +7701,7 @@
         <OverallResults successes="5" failures="0" expectedFailures="0"/>
       </Section>
       <Section name="Given: an empty vector">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/BDDTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/BDDTests.cpp" >
           <Original>
             v.size() == 0
           </Original>
@@ -7711,7 +7711,7 @@
         </Expression>
         <Section name="When: we reserve more space">
           <Section name="Then: The capacity is increased but the size remains the same">
-            <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/BDDTests.cpp" >
+            <Expression success="true" filename="projects/SelfTest/BDDTests.cpp" >
               <Original>
                 v.capacity() >= 10
               </Original>
@@ -7719,7 +7719,7 @@
                 10 >= 10
               </Expanded>
             </Expression>
-            <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/BDDTests.cpp" >
+            <Expression success="true" filename="projects/SelfTest/BDDTests.cpp" >
               <Original>
                 v.size() == 0
               </Original>
@@ -7749,7 +7749,7 @@
     </TestCase>
     <TestCase name="Scenario: BDD tests requiring Fixtures to provide commonly-accessed data or methods">
       <Section name="Given: No operations precede me">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/BDDTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/BDDTests.cpp" >
           <Original>
             before == 0
           </Original>
@@ -7759,7 +7759,7 @@
         </Expression>
         <Section name="When: We get the count">
           <Section name="Then: Subsequently values are higher">
-            <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/BDDTests.cpp" >
+            <Expression success="true" filename="projects/SelfTest/BDDTests.cpp" >
               <Original>
                 after > before
               </Original>
@@ -7776,7 +7776,7 @@
       <OverallResult success="true"/>
     </TestCase>
     <TestCase name="section tracking">
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/SectionTrackerTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/SectionTrackerTests.cpp" >
         <Original>
           !testCaseTracker.isCompleted()
         </Original>
@@ -7785,7 +7785,7 @@
         </Expanded>
       </Expression>
       <Section name="test case with no sections">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/SectionTrackerTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/SectionTrackerTests.cpp" >
           <Original>
             !testCaseTracker.isCompleted()
           </Original>
@@ -7793,7 +7793,7 @@
             !false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/SectionTrackerTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/SectionTrackerTests.cpp" >
           <Original>
             testCaseTracker.isCompleted()
           </Original>
@@ -7803,7 +7803,7 @@
         </Expression>
         <OverallResults successes="2" failures="0" expectedFailures="0"/>
       </Section>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/SectionTrackerTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/SectionTrackerTests.cpp" >
         <Original>
           !testCaseTracker.isCompleted()
         </Original>
@@ -7812,7 +7812,7 @@
         </Expanded>
       </Expression>
       <Section name="test case with one section">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/SectionTrackerTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/SectionTrackerTests.cpp" >
           <Original>
             testCaseTracker.enterSection( section1Name )
           </Original>
@@ -7820,7 +7820,7 @@
             true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/SectionTrackerTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/SectionTrackerTests.cpp" >
           <Original>
             !testCaseTracker.isCompleted()
           </Original>
@@ -7828,7 +7828,7 @@
             !false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/SectionTrackerTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/SectionTrackerTests.cpp" >
           <Original>
             testCaseTracker.isCompleted()
           </Original>
@@ -7836,7 +7836,7 @@
             true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/SectionTrackerTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/SectionTrackerTests.cpp" >
           <Original>
             !testCaseTracker.enterSection( section1Name )
           </Original>
@@ -7846,7 +7846,7 @@
         </Expression>
         <OverallResults successes="4" failures="0" expectedFailures="0"/>
       </Section>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/SectionTrackerTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/SectionTrackerTests.cpp" >
         <Original>
           !testCaseTracker.isCompleted()
         </Original>
@@ -7855,7 +7855,7 @@
         </Expanded>
       </Expression>
       <Section name="test case with two consecutive sections">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/SectionTrackerTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/SectionTrackerTests.cpp" >
           <Original>
             testCaseTracker.enterSection( section1Name )
           </Original>
@@ -7863,7 +7863,7 @@
             true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/SectionTrackerTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/SectionTrackerTests.cpp" >
           <Original>
             !testCaseTracker.enterSection( section2Name )
           </Original>
@@ -7871,7 +7871,7 @@
             !false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/SectionTrackerTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/SectionTrackerTests.cpp" >
           <Original>
             !testCaseTracker.isCompleted()
           </Original>
@@ -7879,7 +7879,7 @@
             !false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/SectionTrackerTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/SectionTrackerTests.cpp" >
           <Original>
             !testCaseTracker.enterSection( section1Name )
           </Original>
@@ -7887,7 +7887,7 @@
             !false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/SectionTrackerTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/SectionTrackerTests.cpp" >
           <Original>
             testCaseTracker.enterSection( section2Name )
           </Original>
@@ -7895,7 +7895,7 @@
             true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/SectionTrackerTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/SectionTrackerTests.cpp" >
           <Original>
             testCaseTracker.isCompleted()
           </Original>
@@ -7905,7 +7905,7 @@
         </Expression>
         <OverallResults successes="6" failures="0" expectedFailures="0"/>
       </Section>
-      <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/SectionTrackerTests.cpp" >
+      <Expression success="true" filename="projects/SelfTest/SectionTrackerTests.cpp" >
         <Original>
           !testCaseTracker.isCompleted()
         </Original>
@@ -7914,7 +7914,7 @@
         </Expanded>
       </Expression>
       <Section name="test case with one section within another">
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/SectionTrackerTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/SectionTrackerTests.cpp" >
           <Original>
             testCaseTracker.enterSection( section1Name )
           </Original>
@@ -7922,7 +7922,7 @@
             true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/SectionTrackerTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/SectionTrackerTests.cpp" >
           <Original>
             testCaseTracker.enterSection( section2Name )
           </Original>
@@ -7930,7 +7930,7 @@
             true
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/SectionTrackerTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/SectionTrackerTests.cpp" >
           <Original>
             !testCaseTracker.isCompleted()
           </Original>
@@ -7938,7 +7938,7 @@
             !false
           </Expanded>
         </Expression>
-        <Expression success="true" filename="/Users/philnash/Dev/OSS/Catch-Dev/projects/SelfTest/SectionTrackerTests.cpp" >
+        <Expression success="true" filename="projects/SelfTest/SectionTrackerTests.cpp" >
           <Original>
             testCaseTracker.isCompleted()
           </Original>
diff --git a/scripts/approvalTests.py b/scripts/approvalTests.py
index 329c99b..f2ffea5 100644
--- a/scripts/approvalTests.py
+++ b/scripts/approvalTests.py
@@ -9,8 +9,9 @@
 
 rootPath = os.path.join( catchPath, 'projects/SelfTest/Baselines' )
 
-filenameParser = re.compile( r'.*/(.*\..pp:)(.*)' )
+filenameParser = re.compile( r'(.*)/(.*\..pp:)(.*)' )
 filelineParser = re.compile( r'(.*\..pp:)([0-9]*)(.*)' )
+pathParser = re.compile( r'(.*?)/(.*\..pp)(.*)' )
 lineNumberParser = re.compile( r'(.*)line="[0-9]*"(.*)' )
 hexParser = re.compile( r'(.*)\b(0[xX][0-9a-fA-F]+)\b(.*)' )
 durationsParser = re.compile( r'(.*)time="[0-9]*\.[0-9]*"(.*)' )
@@ -26,14 +27,20 @@
 def filterLine( line ):
 	m = filenameParser.match( line )
 	if m:
-		line = m.group(1) + m.group(2)
-		m = filelineParser.match( line )
-		if m:
-			line = m.group(1) + "<line number>" + m.group(3)
+		line = m.group(2) + m.group(3)
+		m2 = filelineParser.match( line )
+		if m2:
+			line = m2.group(1) + "<line number>" + m2.group(3)
 	else:
-		m = lineNumberParser.match( line )
-		if m:
-			line = m.group(1) + m.group(2)
+		m2 = lineNumberParser.match( line )
+		if m2:
+			line = m2.group(1) + m2.group(2)
+	m = pathParser.match( line )
+	if m:
+		path = "/" + m.group(2)
+		if path.startswith( catchPath ):
+			path = path[1+len(catchPath):]
+		line = m.group(1) + path + m.group(3)
 	m = versionParser.match( line )
 	if m:
 		line = m.group(1) + "<version>" + m.group(2)
@@ -52,6 +59,8 @@
 def approve( baseName, args ):
 	global overallResult
 	args[0:0] = [cmdPath]
+	if not os.path.exists( cmdPath ):
+			raise Exception( "Executable doesn't exist at " + cmdPath )
 	baselinesPath = os.path.join( rootPath, '{0}.approved.txt'.format( baseName ) )
 	rawResultsPath = os.path.join( rootPath, '_{0}.tmp'.format( baseName ) )
 	filteredResultsPath = os.path.join( rootPath, '{0}.unapproved.txt'.format( baseName ) )