diff options
author | Yury Gribov <tetra2005@gmail.com> | 2017-07-11 12:23:58 +0000 |
---|---|---|
committer | Maxim Ostapenko <chefmax@gcc.gnu.org> | 2017-07-11 15:23:58 +0300 |
commit | 3d36348a32186307ce50d748834df29abda2a951 (patch) | |
tree | dab86a6acb36ea9c79ab12f454a875b388d101f5 /gcc | |
parent | df27207be3e77fd39750bb3570f17bece517a9d7 (diff) | |
download | gcc-3d36348a32186307ce50d748834df29abda2a951.zip gcc-3d36348a32186307ce50d748834df29abda2a951.tar.gz gcc-3d36348a32186307ce50d748834df29abda2a951.tar.bz2 |
profopt.exp: Print relative names in UNSUPPORTED AutoFDO tests.
2017-07-11 Yury Gribov <tetra2005@gmail.com>
* lib/profopt.exp: Print relative names in UNSUPPORTED
AutoFDO tests.
From-SVN: r250128
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/lib/profopt.exp | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 153da28..e604877 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2017-07-11 Yury Gribov <tetra2005@gmail.com> + + * lib/profopt.exp: Print relative names in UNSUPPORTED + AutoFDO tests. + 2017-07-10 Michael Collison <michael.collison@arm.com> * gcc.target/aarch64/var_shift_mask_1.c: Fix for ILP32 diff --git a/gcc/testsuite/lib/profopt.exp b/gcc/testsuite/lib/profopt.exp index 0ea8e7a..93bb23c 100644 --- a/gcc/testsuite/lib/profopt.exp +++ b/gcc/testsuite/lib/profopt.exp @@ -285,7 +285,7 @@ proc auto-profopt-execute { src } { if { ! [check_profiling_available "-fauto-profile"] } { regsub "(?q)$srcdir/" $src "" testcase - unsupported "$src -fauto-profile" + unsupported "$testcase -fauto-profile" return } set profile_wrapper [profopt-perf-wrapper] @@ -451,7 +451,7 @@ proc profopt-execute { src } { verbose "Running $cmd" set id [remote_spawn "" $cmd] if { $id < 0 } { - unsupported "$src -fauto-profile: cannot run create_gcov" + unsupported "$testcase -fauto-profile: cannot run create_gcov" set status "fail" return } |