* [PATCH] checkpatch: enforce process for expected files
@ 2020-03-15 11:35 Michael S. Tsirkin
2020-03-16 9:54 ` Stefan Hajnoczi
2020-03-16 11:17 ` Igor Mammedov
0 siblings, 2 replies; 3+ messages in thread
From: Michael S. Tsirkin @ 2020-03-15 11:35 UTC (permalink / raw)
To: qemu-devel
Cc: peter.maydell, Philippe Mathieu-Daudé, Richard Henderson,
Stefan Hajnoczi, imammedo, Paolo Bonzini, Alex Bennée
If the process documented in tests/qtest/bios-tables-test.c
is followed, then same patch never touches both expected
files and code. Teach checkpatch to enforce this rule.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
Peter, Igor what do you think?
scripts/checkpatch.pl | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index b27e4ff5e9..96583e3fff 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -35,6 +35,8 @@ my $summary_file = 0;
my $root;
my %debug;
my $help = 0;
+my $testexpected;
+my $nontestexpected;
sub help {
my ($exitcode) = @_;
@@ -1256,6 +1258,26 @@ sub WARN {
}
}
+# According to tests/qtest/bios-tables-test.c: do not
+# change expected file in the same commit with adding test
+sub checkfilename {
+ my ($name) = @_;
+ if ($name =~ m#^tests/data/acpi/# and
+ # make exception for a shell script that rebuilds the files
+ not $name =~ m#^\.sh$# or
+ $name =~ m#^tests/qtest/bios-tables-test-allowed-diff.h$#) {
+ $testexpected = $name;
+ } else {
+ $nontestexpected = $name;
+ }
+ if (defined $testexpected and defined $nontestexpected) {
+ ERROR("Do not add expected files together with tests, " .
+ "follow instructions in " .
+ "tests/qtest/bios-tables-test.c: both " .
+ $testexpected . " and " . $nontestexpected . " found\n");
+ }
+}
+
sub process {
my $filename = shift;
@@ -1431,9 +1453,11 @@ sub process {
if ($line =~ /^diff --git.*?(\S+)$/) {
$realfile = $1;
$realfile =~ s@^([^/]*)/@@ if (!$file);
+ checkfilename($realfile);
} elsif ($line =~ /^\+\+\+\s+(\S+)/) {
$realfile = $1;
$realfile =~ s@^([^/]*)/@@ if (!$file);
+ checkfilename($realfile);
$p1_prefix = $1;
if (!$file && $tree && $p1_prefix ne '' &&
--
MST
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] checkpatch: enforce process for expected files
2020-03-15 11:35 [PATCH] checkpatch: enforce process for expected files Michael S. Tsirkin
@ 2020-03-16 9:54 ` Stefan Hajnoczi
2020-03-16 11:17 ` Igor Mammedov
1 sibling, 0 replies; 3+ messages in thread
From: Stefan Hajnoczi @ 2020-03-16 9:54 UTC (permalink / raw)
To: Michael S. Tsirkin
Cc: peter.maydell, Philippe Mathieu-Daudé, Richard Henderson,
qemu-devel, imammedo, Paolo Bonzini, Alex Bennée
[-- Attachment #1: Type: text/plain, Size: 2509 bytes --]
On Sun, Mar 15, 2020 at 07:35:46AM -0400, Michael S. Tsirkin wrote:
> If the process documented in tests/qtest/bios-tables-test.c
> is followed, then same patch never touches both expected
> files and code. Teach checkpatch to enforce this rule.
>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> ---
>
> Peter, Igor what do you think?
Minor comments below:
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
>
> scripts/checkpatch.pl | 24 ++++++++++++++++++++++++
> 1 file changed, 24 insertions(+)
>
> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
> index b27e4ff5e9..96583e3fff 100755
> --- a/scripts/checkpatch.pl
> +++ b/scripts/checkpatch.pl
> @@ -35,6 +35,8 @@ my $summary_file = 0;
> my $root;
> my %debug;
> my $help = 0;
> +my $testexpected;
> +my $nontestexpected;
If you respin, please add acpi to these variable names since they are
specific to acpi.
>
> sub help {
> my ($exitcode) = @_;
> @@ -1256,6 +1258,26 @@ sub WARN {
> }
> }
>
> +# According to tests/qtest/bios-tables-test.c: do not
> +# change expected file in the same commit with adding test
> +sub checkfilename {
> + my ($name) = @_;
There is a tab instead of spaces here that could be fixed if you decide
to respin.
> + if ($name =~ m#^tests/data/acpi/# and
> + # make exception for a shell script that rebuilds the files
> + not $name =~ m#^\.sh$# or
> + $name =~ m#^tests/qtest/bios-tables-test-allowed-diff.h$#) {
> + $testexpected = $name;
> + } else {
> + $nontestexpected = $name;
> + }
> + if (defined $testexpected and defined $nontestexpected) {
> + ERROR("Do not add expected files together with tests, " .
> + "follow instructions in " .
> + "tests/qtest/bios-tables-test.c: both " .
> + $testexpected . " and " . $nontestexpected . " found\n");
> + }
> +}
> +
> sub process {
> my $filename = shift;
>
> @@ -1431,9 +1453,11 @@ sub process {
> if ($line =~ /^diff --git.*?(\S+)$/) {
> $realfile = $1;
> $realfile =~ s@^([^/]*)/@@ if (!$file);
> + checkfilename($realfile);
> } elsif ($line =~ /^\+\+\+\s+(\S+)/) {
> $realfile = $1;
> $realfile =~ s@^([^/]*)/@@ if (!$file);
> + checkfilename($realfile);
The surrounding lines in this hunk use tab indentation, not spaces.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] checkpatch: enforce process for expected files
2020-03-15 11:35 [PATCH] checkpatch: enforce process for expected files Michael S. Tsirkin
2020-03-16 9:54 ` Stefan Hajnoczi
@ 2020-03-16 11:17 ` Igor Mammedov
1 sibling, 0 replies; 3+ messages in thread
From: Igor Mammedov @ 2020-03-16 11:17 UTC (permalink / raw)
To: Michael S. Tsirkin
Cc: peter.maydell, Philippe Mathieu-Daudé, Richard Henderson,
qemu-devel, Stefan Hajnoczi, Paolo Bonzini, Alex Bennée
On Sun, 15 Mar 2020 07:35:46 -0400
"Michael S. Tsirkin" <mst@redhat.com> wrote:
> If the process documented in tests/qtest/bios-tables-test.c
> is followed, then same patch never touches both expected
> files and code. Teach checkpatch to enforce this rule.
>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Tested-by: Igor Mammedov <imammedo@redhat.com>
> ---
>
> Peter, Igor what do you think?
>
> scripts/checkpatch.pl | 24 ++++++++++++++++++++++++
> 1 file changed, 24 insertions(+)
>
> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
> index b27e4ff5e9..96583e3fff 100755
> --- a/scripts/checkpatch.pl
> +++ b/scripts/checkpatch.pl
> @@ -35,6 +35,8 @@ my $summary_file = 0;
> my $root;
> my %debug;
> my $help = 0;
> +my $testexpected;
> +my $nontestexpected;
>
> sub help {
> my ($exitcode) = @_;
> @@ -1256,6 +1258,26 @@ sub WARN {
> }
> }
>
> +# According to tests/qtest/bios-tables-test.c: do not
> +# change expected file in the same commit with adding test
> +sub checkfilename {
> + my ($name) = @_;
> + if ($name =~ m#^tests/data/acpi/# and
> + # make exception for a shell script that rebuilds the files
> + not $name =~ m#^\.sh$# or
> + $name =~ m#^tests/qtest/bios-tables-test-allowed-diff.h$#) {
> + $testexpected = $name;
> + } else {
> + $nontestexpected = $name;
> + }
> + if (defined $testexpected and defined $nontestexpected) {
> + ERROR("Do not add expected files together with tests, " .
> + "follow instructions in " .
> + "tests/qtest/bios-tables-test.c: both " .
> + $testexpected . " and " . $nontestexpected . " found\n");
> + }
> +}
> +
> sub process {
> my $filename = shift;
>
> @@ -1431,9 +1453,11 @@ sub process {
> if ($line =~ /^diff --git.*?(\S+)$/) {
> $realfile = $1;
> $realfile =~ s@^([^/]*)/@@ if (!$file);
> + checkfilename($realfile);
> } elsif ($line =~ /^\+\+\+\s+(\S+)/) {
> $realfile = $1;
> $realfile =~ s@^([^/]*)/@@ if (!$file);
> + checkfilename($realfile);
>
> $p1_prefix = $1;
> if (!$file && $tree && $p1_prefix ne '' &&
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-03-16 12:13 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-15 11:35 [PATCH] checkpatch: enforce process for expected files Michael S. Tsirkin
2020-03-16 9:54 ` Stefan Hajnoczi
2020-03-16 11:17 ` Igor Mammedov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).