sim: testsuite: tweak parallel find invocation [PR sim/29596]
authorMike Frysinger <vapier@gentoo.org>
Sun, 23 Oct 2022 19:11:46 +0000 (00:56 +0545)
committerMike Frysinger <vapier@gentoo.org>
Sun, 23 Oct 2022 19:13:49 +0000 (00:58 +0545)
Make sure we invoke runtest with the same exp filenames when running in
parallel as it will find when run single threaded.  When `runtest` finds
files itself, it will use paths like "aarch64/allinsn.exp".  When we run
`find .` with the %p option, it produces "./aarch64/allinsn.exp".  Switch
to %P to get "aarch64/allinsn.exp".

Bug: https://sourceware.org/PR29596

sim/Makefile.in
sim/testsuite/local.mk

index 7845a333fca6cabd684c0dc79fe56a5ac6d0accf..7e18bd161b44aab38e1e6a839642108f8ad01af4 100644 (file)
@@ -2473,7 +2473,7 @@ check/%.exp:
 check-DEJAGNU-parallel:
        $(AM_V_at)( \
        $(MAKE) -k \
-         `cd $(srcdir)/testsuite && find . -name '*.exp' -printf 'check/%p '`; \
+         `cd $(srcdir)/testsuite && find . -name '*.exp' -printf 'check/%P '`; \
        ret=$$?; \
        $(SHELL) $(srcroot)/contrib/dg-extract-results.sh \
          `find testsuite/ -maxdepth 4 -name testrun.sum | sort` > testrun.sum; \
index c1799c728ae7f853de9350c12581a1b636a401a5..e55f8c3c8b229f2810af22e06c9050ccc0322cdc 100644 (file)
@@ -49,7 +49,7 @@ check/%.exp:
 check-DEJAGNU-parallel:
        $(AM_V_at)( \
        $(MAKE) -k \
-         `cd $(srcdir)/testsuite && find . -name '*.exp' -printf 'check/%p '`; \
+         `cd $(srcdir)/testsuite && find . -name '*.exp' -printf 'check/%P '`; \
        ret=$$?; \
        $(SHELL) $(srcroot)/contrib/dg-extract-results.sh \
          `find testsuite/ -maxdepth 4 -name testrun.sum | sort` > testrun.sum; \