[gdb/testsuite] Fix gdb.base/index-cache.exp with cc-with-gdb-index
authorTom de Vries <tdevries@suse.de>
Sun, 1 Aug 2021 17:53:42 +0000 (19:53 +0200)
committerTom de Vries <tdevries@suse.de>
Sun, 1 Aug 2021 17:53:42 +0000 (19:53 +0200)
With target board cc-with-gdb-index we run into:
...
FAIL: gdb.base/index-cache.exp: couldn't remove files in temporary cache dir
...

The problem is that there are no files to remove, because the index cache
isn't used, as indicated by $expecting_index_cache_use.

Fix this by only FAILing when $expecting_index_cache_use.

Tested on x86_64-linux.

gdb/testsuite/ChangeLog:

2021-08-01  Tom de Vries  <tdevries@suse.de>

* gdb.base/index-cache.exp:

gdb/testsuite/gdb.base/index-cache.exp

index 0daf7bbb0866b037647b36e0ff2d36cc9dfe9791..496145ed8fccf8e423f07b63b095635f2426482f 100644 (file)
@@ -227,7 +227,7 @@ test_cache_enabled_hit $cache_dir
 test_cache_disabled $cache_dir "after populate"
 
 lassign [remote_exec host sh "-c \"rm $cache_dir/*.gdb-index\""] ret
-if { $ret != 0 } {
+if { $ret != 0 && $expecting_index_cache_use } {
     fail "couldn't remove files in temporary cache dir"
     return
 }