diff options
author | Mike Frysinger <vapier@gentoo.org> | 2022-10-24 01:28:15 +0545 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2022-10-24 01:28:15 +0545 |
commit | e60091e4d30f87e6b24d28829bf753369d338d3e (patch) | |
tree | a059f40807dcd029da2acbe0a78ffb89017b2254 | |
parent | 86ef36f655d13cd39ff573de079b35a142f8cf42 (diff) | |
download | gdb-e60091e4d30f87e6b24d28829bf753369d338d3e.zip gdb-e60091e4d30f87e6b24d28829bf753369d338d3e.tar.gz gdb-e60091e4d30f87e6b24d28829bf753369d338d3e.tar.bz2 |
sim: testsuite: update ignored .exp files [PR sim/29596]
Now that we run `check/foo.exp` instead of `check/./foo.exp`,
update the config/ & lib/ exceptions to cover both paths.
Bug: https://sourceware.org/PR29596
-rw-r--r-- | sim/Makefile.in | 2 | ||||
-rw-r--r-- | sim/testsuite/local.mk | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/sim/Makefile.in b/sim/Makefile.in index 7e18bd1..18e84e5 100644 --- a/sim/Makefile.in +++ b/sim/Makefile.in @@ -2464,7 +2464,9 @@ site-sim-config.exp: Makefile # Ignore dirs that only contain configuration settings. check/./config/%.exp: ; @true +check/config/%.exp: ; @true check/./lib/%.exp: ; @true +check/lib/%.exp: ; @true check/%.exp: $(AM_V_at)mkdir -p testsuite/$* diff --git a/sim/testsuite/local.mk b/sim/testsuite/local.mk index e55f8c3..b8114a5 100644 --- a/sim/testsuite/local.mk +++ b/sim/testsuite/local.mk @@ -40,7 +40,9 @@ DO_RUNTEST = \ # Ignore dirs that only contain configuration settings. check/./config/%.exp: ; @true +check/config/%.exp: ; @true check/./lib/%.exp: ; @true +check/lib/%.exp: ; @true check/%.exp: $(AM_V_at)mkdir -p testsuite/$* |