This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH] Ensure UNSUPPORTED tests in tree-prof do not report absolute, paths.
- From: Jakub Jelinek <jakub at redhat dot com>
- To: Marcus Shawcroft <marcus dot shawcroft at arm dot com>
- Cc: "gcc-patches at gcc dot gnu dot org" <gcc-patches at gcc dot gnu dot org>
- Date: Wed, 12 Mar 2014 15:44:45 +0100
- Subject: Re: [PATCH] Ensure UNSUPPORTED tests in tree-prof do not report absolute, paths.
- Authentication-results: sourceware.org; auth=none
- References: <53207193 dot 7090007 at arm dot com>
- Reply-to: Jakub Jelinek <jakub at redhat dot com>
On Wed, Mar 12, 2014 at 02:39:15PM +0000, Marcus Shawcroft wrote:
> 2014-03-12 Marcus Shawcroft <marcus.shawcroft@arm.com>
>
> * lib/profopt.exp (profopt-execute): Use $testcase in
> unsupported.
Ok, thanks.
> --- a/gcc/testsuite/lib/profopt.exp
> +++ b/gcc/testsuite/lib/profopt.exp
> @@ -277,7 +277,7 @@ proc profopt-execute { src } {
> set dg-do-what [list "run" "" P]
> set extra_flags [profopt-get-options $src]
> if { [lindex ${dg-do-what} 1 ] == "N" } {
> - unsupported "$src"
> + unsupported "$testcase"
> unset testname_with_flags
> verbose "$src not supported on this target, skipping it" 3
> return
Jakub