From: Kris Van Hees <kris.van.hees@oracle.com>
To: Nick Alcock <nick.alcock@oracle.com>
Cc: dtrace@lists.linux.dev, dtrace-devel@oss.oracle.com
Subject: Re: [DTrace-devel] [PATCH 7/9] tests: delete the kernel build dir stuff
Date: Wed, 31 Jul 2024 15:22:51 -0400 [thread overview]
Message-ID: <ZqqPC/p6DiTdcmse@oracle.com> (raw)
In-Reply-To: <20240531185928.363245-8-nick.alcock@oracle.com>
The subject line does not (to me) convey what this patch actually does. It
would be more clear to perhaps say something like "test: remove obsolete
kernel coverage data collection'
On Fri, May 31, 2024 at 07:59:26PM +0100, Nick Alcock via DTrace-devel wrote:
> The DTrace kernel module is long dead: we don't need kernel coverage any
> more. Delete the example runtest.conf as well (but do not delete the
> loading runtest.conf: we are about to use it for another purpose).
>
> Signed-off-by: Nick Alcock <nick.alcock@oracle.com>
> ---
> runtest.conf.example | 10 ----------
> runtest.sh | 26 --------------------------
> 2 files changed, 36 deletions(-)
> delete mode 100644 runtest.conf.example
>
> diff --git a/runtest.conf.example b/runtest.conf.example
> deleted file mode 100644
> index c92aa6b96cff6..0000000000000
> --- a/runtest.conf.example
> +++ /dev/null
> @@ -1,10 +0,0 @@
> -# Test configuration file.
> -#
> -# Copy this file to runtest.conf and edit it.
> -
> -# Kernel build directory.
> -#
> -# If this is not specified, kernel test coverage information will not
> -# be available.
> -
> -# KERNEL_BUILD_DIR=
> diff --git a/runtest.sh b/runtest.sh
> index 817f4a90487d9..d9b7c02c06a3e 100755
> --- a/runtest.sh
> +++ b/runtest.sh
> @@ -644,15 +644,6 @@ if [[ -n $NOBADDOF ]]; then
> --quiet -o $logdir/coverage/initial.lcov 2>/dev/null
> fi
> done
> -
> - if [[ -n $KERNEL_BUILD_DIR ]] && [[ -d $KERNEL_BUILD_DIR ]] &&
> - [[ -d /sys/kernel/debug/gcov/$KERNEL_BUILD_DIR/kernel/dtrace ]]; then
> - rm -rf $KERNEL_BUILD_DIR/coverage
> - mkdir -p $KERNEL_BUILD_DIR/coverage
> - lcov --zerocounters --quiet
> - lcov --capture --base-directory $KERNEL_BUILD_DIR --initial \
> - --quiet -o $KERNEL_BUILD_DIR/coverage/initial.lcov 2>/dev/null
> - fi
> fi
>
> load_modules
> @@ -1592,23 +1583,6 @@ for name in build*; do
> fi
> done
>
> -if [[ -n $KERNEL_BUILD_DIR ]] && [[ -d $KERNEL_BUILD_DIR ]] &&
> - [[ -d /sys/kernel/debug/gcov/$KERNEL_BUILD_DIR/kernel/dtrace ]]; then
> - force_out "Coverage info for kernel:\n"
> -
> - lcov --capture --base-directory $KERNEL_BUILD_DIR \
> - --quiet -o $KERNEL_BUILD_DIR/coverage/coverage.lcov
> - lcov --add-tracefile $KERNEL_BUILD_DIR/coverage/initial.lcov \
> - --add-tracefile $KERNEL_BUILD_DIR/coverage/coverage.lcov \
> - --quiet -o $KERNEL_BUILD_DIR/coverage/coverage.lcov
> -
> - genhtml --frames --show-details -o $KERNEL_BUILD_DIR/coverage \
> - --title "DTrace kernel coverage" --highlight --legend \
> - $KERNEL_BUILD_DIR/coverage/coverage.lcov | \
> - awk 'BEGIN { quiet=1; } { if (!quiet) { print ($0); } } /^Overall coverage rate:$/ { quiet=0; }' | \
> - tee -a $LOGFILE $SUMFILE
> -fi
> -
> if [[ -n $ERRORS ]]; then
> exit 1
> fi
> --
> 2.45.1.275.g567cb0950c
>
>
> _______________________________________________
> DTrace-devel mailing list
> DTrace-devel@oss.oracle.com
> https://oss.oracle.com/mailman/listinfo/dtrace-devel
next prev parent reply other threads:[~2024-07-31 19:22 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-31 18:59 [PATCH 0/9] relocatable DTrace Nick Alcock
2024-05-31 18:59 ` [PATCH 1/9] spec: install sdt*.h in /usr/lib64/dtrace/include/sys Nick Alcock
2024-05-31 18:59 ` [PATCH 2/9] build: initial pkg-config support Nick Alcock
2024-05-31 18:59 ` [PATCH 3/9] build: track configured vars Nick Alcock
2024-05-31 18:59 ` [PATCH 4/9] build: --bindir is supposed to be equivalent to --sbindir Nick Alcock
2024-05-31 18:59 ` [PATCH 5/9] build: the TESTDIR is relative to the LIBDIR by default Nick Alcock
2024-05-31 18:59 ` [PATCH 6/9] build: add a pkg-config file for dtrace consumers: use it Nick Alcock
2024-05-31 18:59 ` [PATCH 7/9] tests: delete the kernel build dir stuff Nick Alcock
2024-07-31 19:22 ` Kris Van Hees [this message]
2024-07-31 19:32 ` [DTrace-devel] " Nick Alcock
2024-05-31 18:59 ` [PATCH 8/9] build: make dtrace and dtprobed relocatable Nick Alcock
2024-05-31 19:46 ` [DTrace-devel] " Nick Alcock
2024-05-31 18:59 ` [PATCH 9/9] test: work when relocated Nick Alcock
2024-07-31 19:21 ` [DTrace-devel] [PATCH 0/9] relocatable DTrace Kris Van Hees
2024-07-31 19:54 ` Nick Alcock
2024-07-31 20:11 ` Kris Van Hees
2024-08-01 16:45 ` Nick Alcock
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZqqPC/p6DiTdcmse@oracle.com \
--to=kris.van.hees@oracle.com \
--cc=dtrace-devel@oss.oracle.com \
--cc=dtrace@lists.linux.dev \
--cc=nick.alcock@oracle.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox