From 7301662ef97336f2eb333e81c71d2181b2dd953f Mon Sep 17 00:00:00 2001 From: Bernd Edlinger Date: Fri, 14 May 2021 14:53:19 +0200 Subject: [PATCH] testsuite: Cleanup some temp dirs with gdb-index files After the gdb test-suite runs there are some files left in /tmp/tmp*/*.gdb-index, remove those files and the directory at the end of the test case. gdb/testsuite: 2021-05-14 Bernd Edlinger * gdb.base/index-cache.exp: Cleanup $cache_dir/*.gdb-index and remove the directory. * gdb.dwarf2/per-bfd-sharing.exp: Likewise. --- gdb/testsuite/gdb.base/index-cache.exp | 11 +++++++++++ gdb/testsuite/gdb.dwarf2/per-bfd-sharing.exp | 12 ++++++++++++ 2 files changed, 23 insertions(+) diff --git a/gdb/testsuite/gdb.base/index-cache.exp b/gdb/testsuite/gdb.base/index-cache.exp index 13d5532..0daf7bb 100644 --- a/gdb/testsuite/gdb.base/index-cache.exp +++ b/gdb/testsuite/gdb.base/index-cache.exp @@ -226,3 +226,14 @@ test_cache_enabled_hit $cache_dir # Test again with the cache disabled, now that it is populated. test_cache_disabled $cache_dir "after populate" +lassign [remote_exec host sh "-c \"rm $cache_dir/*.gdb-index\""] ret +if { $ret != 0 } { + fail "couldn't remove files in temporary cache dir" + return +} + +lassign [remote_exec host rmdir "$cache_dir"] ret +if { $ret != 0 } { + fail "couldn't remove temporary cache dir" + return +} diff --git a/gdb/testsuite/gdb.dwarf2/per-bfd-sharing.exp b/gdb/testsuite/gdb.dwarf2/per-bfd-sharing.exp index 22ab91f..081088a 100644 --- a/gdb/testsuite/gdb.dwarf2/per-bfd-sharing.exp +++ b/gdb/testsuite/gdb.dwarf2/per-bfd-sharing.exp @@ -91,3 +91,15 @@ foreach_with_prefix first $methods { } } } + +lassign [remote_exec host sh "-c \"rm $cache_dir/*.gdb-index\""] ret +if { $ret != 0 } { + fail "couldn't remove files in temporary cache dir" + return +} + +lassign [remote_exec host rmdir "$cache_dir"] ret +if { $ret != 0 } { + fail "couldn't remove temporary cache dir" + return +} -- 1.9.1