2006-11-20 Martin Baulig <martin@ximian.com>
authorMartin Baulig <martin@novell.com>
Mon, 20 Nov 2006 21:45:55 +0000 (21:45 -0000)
committerMartin Baulig <martin@novell.com>
Mon, 20 Nov 2006 21:45:55 +0000 (21:45 -0000)
* compiler-tester.cs
(PositiveChecker.HandleFailure): Use `LogLine ("{0}", extra)'
since the error message from the compiler might contain {}.

svn path=/trunk/mcs/; revision=68223

mcs/tools/compiler-tester/ChangeLog
mcs/tools/compiler-tester/compiler-tester.cs

index 84b1af324ecdf35ccc843323bf427214aab63cc3..1d927eff9d5836ef10361cd5bf546e805706a491 100644 (file)
@@ -1,3 +1,9 @@
+2006-11-20  Martin Baulig  <martin@ximian.com>
+
+       * compiler-tester.cs
+       (PositiveChecker.HandleFailure): Use `LogLine ("{0}", extra)'
+       since the error message from the compiler might contain {}.
+
 2006-10-06  Marek Safar  <marek.safar@seznam.cz>
 
        * compiler-tester.cs: Positive test file can be now DLL.
index 5eeb8070e57430c69e54e1611e9feb377d5592e5..67a4bf1ed6be343ba6ab871e5fdcfb98435df698 100644 (file)
@@ -560,7 +560,7 @@ namespace TestRunner {
                        }
 
                        if (extra != null)
-                               LogLine (extra);
+                               LogLine ("{0}", extra);
 
                        regression.Add (file);
                }