All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] selftests/arm64: Fix mismerge of Makefile for fp tests
@ 2022-05-24 15:14 ` Mark Brown
  0 siblings, 0 replies; 6+ messages in thread
From: Mark Brown @ 2022-05-24 15:14 UTC (permalink / raw)
  To: Catalin Marinas, Will Deacon, Shuah Khan
  Cc: linux-arm-kernel, linux-kselftest, Mark Brown

The FP Makefile defines two TEST_PROGS_EXTENDED instead of one of them and one
one TEST_GEN_PROGS_EXTENDED for the programs that need compilation. Fix
that.

Fixes: a59f7a7f76407da78 ("selftests/arm64: Use TEST_GEN_PROGS_EXTENDED in the FP Makefile")
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 tools/testing/selftests/arm64/fp/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/arm64/fp/Makefile b/tools/testing/selftests/arm64/fp/Makefile
index a41fef2c9669..36db61358ed5 100644
--- a/tools/testing/selftests/arm64/fp/Makefile
+++ b/tools/testing/selftests/arm64/fp/Makefile
@@ -9,7 +9,7 @@ TEST_GEN_PROGS := fp-stress \
 	sve-ptrace sve-probe-vls \
 	vec-syscfg \
 	za-fork za-ptrace
-TEST_PROGS_EXTENDED := fp-pidbench fpsimd-test \
+TEST_GEN_PROGS_EXTENDED := fp-pidbench fpsimd-test \
 	rdvl-sme rdvl-sve \
 	sve-test \
 	ssve-test \
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH] selftests/arm64: Fix mismerge of Makefile for fp tests
@ 2022-05-24 15:14 ` Mark Brown
  0 siblings, 0 replies; 6+ messages in thread
From: Mark Brown @ 2022-05-24 15:14 UTC (permalink / raw)
  To: Catalin Marinas, Will Deacon, Shuah Khan
  Cc: linux-arm-kernel, linux-kselftest, Mark Brown

The FP Makefile defines two TEST_PROGS_EXTENDED instead of one of them and one
one TEST_GEN_PROGS_EXTENDED for the programs that need compilation. Fix
that.

Fixes: a59f7a7f76407da78 ("selftests/arm64: Use TEST_GEN_PROGS_EXTENDED in the FP Makefile")
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 tools/testing/selftests/arm64/fp/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/arm64/fp/Makefile b/tools/testing/selftests/arm64/fp/Makefile
index a41fef2c9669..36db61358ed5 100644
--- a/tools/testing/selftests/arm64/fp/Makefile
+++ b/tools/testing/selftests/arm64/fp/Makefile
@@ -9,7 +9,7 @@ TEST_GEN_PROGS := fp-stress \
 	sve-ptrace sve-probe-vls \
 	vec-syscfg \
 	za-fork za-ptrace
-TEST_PROGS_EXTENDED := fp-pidbench fpsimd-test \
+TEST_GEN_PROGS_EXTENDED := fp-pidbench fpsimd-test \
 	rdvl-sme rdvl-sve \
 	sve-test \
 	ssve-test \
-- 
2.30.2


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] selftests/arm64: Fix mismerge of Makefile for fp tests
  2022-05-24 15:14 ` Mark Brown
@ 2022-06-02 19:43   ` Catalin Marinas
  -1 siblings, 0 replies; 6+ messages in thread
From: Catalin Marinas @ 2022-06-02 19:43 UTC (permalink / raw)
  To: Mark Brown; +Cc: Will Deacon, Shuah Khan, linux-arm-kernel, linux-kselftest

On Tue, May 24, 2022 at 04:14:54PM +0100, Mark Brown wrote:
> The FP Makefile defines two TEST_PROGS_EXTENDED instead of one of them and one
> one TEST_GEN_PROGS_EXTENDED for the programs that need compilation. Fix
> that.
> 
> Fixes: a59f7a7f76407da78 ("selftests/arm64: Use TEST_GEN_PROGS_EXTENDED in the FP Makefile")
> Signed-off-by: Mark Brown <broonie@kernel.org>
> ---
>  tools/testing/selftests/arm64/fp/Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/testing/selftests/arm64/fp/Makefile b/tools/testing/selftests/arm64/fp/Makefile
> index a41fef2c9669..36db61358ed5 100644
> --- a/tools/testing/selftests/arm64/fp/Makefile
> +++ b/tools/testing/selftests/arm64/fp/Makefile
> @@ -9,7 +9,7 @@ TEST_GEN_PROGS := fp-stress \
>  	sve-ptrace sve-probe-vls \
>  	vec-syscfg \
>  	za-fork za-ptrace
> -TEST_PROGS_EXTENDED := fp-pidbench fpsimd-test \
> +TEST_GEN_PROGS_EXTENDED := fp-pidbench fpsimd-test \
>  	rdvl-sme rdvl-sve \
>  	sve-test \
>  	ssve-test \

Do we still need this? The fixed commit already uses
TEST_GEN_PROGS_EXTENDED and that's what it seems to be in current
mainline. Unless there was a mismerge in -next (I haven't checked).

-- 
Catalin

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] selftests/arm64: Fix mismerge of Makefile for fp tests
@ 2022-06-02 19:43   ` Catalin Marinas
  0 siblings, 0 replies; 6+ messages in thread
From: Catalin Marinas @ 2022-06-02 19:43 UTC (permalink / raw)
  To: Mark Brown; +Cc: Will Deacon, Shuah Khan, linux-arm-kernel, linux-kselftest

On Tue, May 24, 2022 at 04:14:54PM +0100, Mark Brown wrote:
> The FP Makefile defines two TEST_PROGS_EXTENDED instead of one of them and one
> one TEST_GEN_PROGS_EXTENDED for the programs that need compilation. Fix
> that.
> 
> Fixes: a59f7a7f76407da78 ("selftests/arm64: Use TEST_GEN_PROGS_EXTENDED in the FP Makefile")
> Signed-off-by: Mark Brown <broonie@kernel.org>
> ---
>  tools/testing/selftests/arm64/fp/Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/testing/selftests/arm64/fp/Makefile b/tools/testing/selftests/arm64/fp/Makefile
> index a41fef2c9669..36db61358ed5 100644
> --- a/tools/testing/selftests/arm64/fp/Makefile
> +++ b/tools/testing/selftests/arm64/fp/Makefile
> @@ -9,7 +9,7 @@ TEST_GEN_PROGS := fp-stress \
>  	sve-ptrace sve-probe-vls \
>  	vec-syscfg \
>  	za-fork za-ptrace
> -TEST_PROGS_EXTENDED := fp-pidbench fpsimd-test \
> +TEST_GEN_PROGS_EXTENDED := fp-pidbench fpsimd-test \
>  	rdvl-sme rdvl-sve \
>  	sve-test \
>  	ssve-test \

Do we still need this? The fixed commit already uses
TEST_GEN_PROGS_EXTENDED and that's what it seems to be in current
mainline. Unless there was a mismerge in -next (I haven't checked).

-- 
Catalin

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] selftests/arm64: Fix mismerge of Makefile for fp tests
  2022-06-02 19:43   ` Catalin Marinas
@ 2022-06-03  9:21     ` Mark Brown
  -1 siblings, 0 replies; 6+ messages in thread
From: Mark Brown @ 2022-06-03  9:21 UTC (permalink / raw)
  To: Catalin Marinas
  Cc: Will Deacon, Shuah Khan, linux-arm-kernel, linux-kselftest

[-- Attachment #1: Type: text/plain, Size: 525 bytes --]

On Thu, Jun 02, 2022 at 08:43:32PM +0100, Catalin Marinas wrote:
> On Tue, May 24, 2022 at 04:14:54PM +0100, Mark Brown wrote:
> > The FP Makefile defines two TEST_PROGS_EXTENDED instead of one of them and one
> > one TEST_GEN_PROGS_EXTENDED for the programs that need compilation. Fix
> > that.

> Do we still need this? The fixed commit already uses
> TEST_GEN_PROGS_EXTENDED and that's what it seems to be in current
> mainline. Unless there was a mismerge in -next (I haven't checked).

Yes, it looks no longer relevant.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] selftests/arm64: Fix mismerge of Makefile for fp tests
@ 2022-06-03  9:21     ` Mark Brown
  0 siblings, 0 replies; 6+ messages in thread
From: Mark Brown @ 2022-06-03  9:21 UTC (permalink / raw)
  To: Catalin Marinas
  Cc: Will Deacon, Shuah Khan, linux-arm-kernel, linux-kselftest


[-- Attachment #1.1: Type: text/plain, Size: 525 bytes --]

On Thu, Jun 02, 2022 at 08:43:32PM +0100, Catalin Marinas wrote:
> On Tue, May 24, 2022 at 04:14:54PM +0100, Mark Brown wrote:
> > The FP Makefile defines two TEST_PROGS_EXTENDED instead of one of them and one
> > one TEST_GEN_PROGS_EXTENDED for the programs that need compilation. Fix
> > that.

> Do we still need this? The fixed commit already uses
> TEST_GEN_PROGS_EXTENDED and that's what it seems to be in current
> mainline. Unless there was a mismerge in -next (I haven't checked).

Yes, it looks no longer relevant.

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

[-- Attachment #2: Type: text/plain, Size: 176 bytes --]

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-06-03  9:23 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-24 15:14 [PATCH] selftests/arm64: Fix mismerge of Makefile for fp tests Mark Brown
2022-05-24 15:14 ` Mark Brown
2022-06-02 19:43 ` Catalin Marinas
2022-06-02 19:43   ` Catalin Marinas
2022-06-03  9:21   ` Mark Brown
2022-06-03  9:21     ` Mark Brown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.