2009/5/20 Aldy Hernandez: >> >> My only worry is that the testsuite may confuse column and line >> numbers and pass/fail tests because of it. > > Janis has a patch for the testsuite to handle all this.
I'm seeing exactly this in the libstdc++ testsuite with some new tests I've written - is a fix on the way soon? I have something like: /*33*/ foo<int> p1; // { dg-error "no match" } /*34*/ foo<int&> p2; // { dg-error "no match" } and the error for p2 has line:column as 34:33: which matches the first dg-error, so I get a FAIL on line 34 Jonathan