* [Buildroot] [PATCH] support/testing/tests/toolchain/test_external_synopsys.py: drop tests
@ 2025-01-26 11:34 Thomas Petazzoni via buildroot
2025-01-26 17:01 ` Julien Olivain
2025-02-01 11:48 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2025-01-26 11:34 UTC (permalink / raw)
To: buildroot; +Cc: Thomas Petazzoni
The Synopsys external toolchain has been disabled in commit
11a8cdd2bbbd0ef4adf600e4792d75f6f2122ec8, causing the test cases
testing this toolchain to fail. Let's drop those tests for now, they
can always be re-added later on.
Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/8892697531
https://gitlab.com/buildroot.org/buildroot/-/jobs/8892697528
https://gitlab.com/buildroot.org/buildroot/-/jobs/8892697524
https://gitlab.com/buildroot.org/buildroot/-/jobs/8892697519
https://gitlab.com/buildroot.org/buildroot/-/jobs/8892697517
https://gitlab.com/buildroot.org/buildroot/-/jobs/8892697516
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
.../tests/toolchain/test_external_synopsys.py | 91 -------------------
1 file changed, 91 deletions(-)
delete mode 100644 support/testing/tests/toolchain/test_external_synopsys.py
diff --git a/support/testing/tests/toolchain/test_external_synopsys.py b/support/testing/tests/toolchain/test_external_synopsys.py
deleted file mode 100644
index 19ed9f67b0..0000000000
--- a/support/testing/tests/toolchain/test_external_synopsys.py
+++ /dev/null
@@ -1,91 +0,0 @@
-from tests.toolchain.test_external import TestExternalToolchain
-
-
-class TestExternalToolchainSynopsysArc700LE(TestExternalToolchain):
- config = """
- BR2_arcle=y
- BR2_arc770d=y
- BR2_TOOLCHAIN_EXTERNAL=y
- BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC=y
- BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC700=y
- # BR2_TARGET_ROOTFS_TAR is not set
- """
- toolchain_prefix = "arc-linux"
-
- def test_run(self):
- TestExternalToolchain.common_check(self)
-
-
-class TestExternalToolchainSynopsysArc700BE(TestExternalToolchain):
- config = """
- BR2_arceb=y
- BR2_arc770d=y
- BR2_TOOLCHAIN_EXTERNAL=y
- BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC=y
- BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC700=y
- # BR2_TARGET_ROOTFS_TAR is not set
- """
- toolchain_prefix = "arceb-linux"
-
- def test_run(self):
- TestExternalToolchain.common_check(self)
-
-
-class TestExternalToolchainSynopsysArcHSGlibcLE(TestExternalToolchain):
- config = """
- BR2_arcle=y
- BR2_archs38_full=y
- BR2_TOOLCHAIN_EXTERNAL=y
- BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC=y
- BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARCHS_GLIBC=y
- # BR2_TARGET_ROOTFS_TAR is not set
- """
- toolchain_prefix = "arc-linux"
-
- def test_run(self):
- TestExternalToolchain.common_check(self)
-
-
-class TestExternalToolchainSynopsysArcHSGlibcBE(TestExternalToolchain):
- config = """
- BR2_arceb=y
- BR2_archs38_full=y
- BR2_TOOLCHAIN_EXTERNAL=y
- BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC=y
- BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARCHS_GLIBC=y
- # BR2_TARGET_ROOTFS_TAR is not set
- """
- toolchain_prefix = "arceb-linux"
-
- def test_run(self):
- TestExternalToolchain.common_check(self)
-
-
-class TestExternalToolchainSynopsysArcHSuClibcLE(TestExternalToolchain):
- config = """
- BR2_arcle=y
- BR2_archs38_full=y
- BR2_TOOLCHAIN_EXTERNAL=y
- BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC=y
- BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARCHS_UCLIBC=y
- # BR2_TARGET_ROOTFS_TAR is not set
- """
- toolchain_prefix = "arc-linux"
-
- def test_run(self):
- TestExternalToolchain.common_check(self)
-
-
-class TestExternalToolchainSynopsysArcHSuClibcBE(TestExternalToolchain):
- config = """
- BR2_arceb=y
- BR2_archs38_full=y
- BR2_TOOLCHAIN_EXTERNAL=y
- BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC=y
- BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARCHS_UCLIBC=y
- # BR2_TARGET_ROOTFS_TAR is not set
- """
- toolchain_prefix = "arceb-linux"
-
- def test_run(self):
- TestExternalToolchain.common_check(self)
--
2.47.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH] support/testing/tests/toolchain/test_external_synopsys.py: drop tests
2025-01-26 11:34 [Buildroot] [PATCH] support/testing/tests/toolchain/test_external_synopsys.py: drop tests Thomas Petazzoni via buildroot
@ 2025-01-26 17:01 ` Julien Olivain
2025-02-01 11:48 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Julien Olivain @ 2025-01-26 17:01 UTC (permalink / raw)
To: Thomas Petazzoni; +Cc: buildroot
Hi Thomas,
On 26/01/2025 12:34, Thomas Petazzoni via buildroot wrote:
> The Synopsys external toolchain has been disabled in commit
> 11a8cdd2bbbd0ef4adf600e4792d75f6f2122ec8, causing the test cases
> testing this toolchain to fail. Let's drop those tests for now, they
> can always be re-added later on.
>
> Fixes:
>
> https://gitlab.com/buildroot.org/buildroot/-/jobs/8892697531
> https://gitlab.com/buildroot.org/buildroot/-/jobs/8892697528
> https://gitlab.com/buildroot.org/buildroot/-/jobs/8892697524
> https://gitlab.com/buildroot.org/buildroot/-/jobs/8892697519
> https://gitlab.com/buildroot.org/buildroot/-/jobs/8892697517
> https://gitlab.com/buildroot.org/buildroot/-/jobs/8892697516
>
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
I applied the patch to master, thanks.
I also removed the test entry in DEVELOPERS.
Best regards,
Julien.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH] support/testing/tests/toolchain/test_external_synopsys.py: drop tests
2025-01-26 11:34 [Buildroot] [PATCH] support/testing/tests/toolchain/test_external_synopsys.py: drop tests Thomas Petazzoni via buildroot
2025-01-26 17:01 ` Julien Olivain
@ 2025-02-01 11:48 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2025-02-01 11:48 UTC (permalink / raw)
To: Thomas Petazzoni via buildroot; +Cc: Thomas Petazzoni
>>>>> "Thomas" == Thomas Petazzoni via buildroot <buildroot@buildroot.org> writes:
> The Synopsys external toolchain has been disabled in commit
> 11a8cdd2bbbd0ef4adf600e4792d75f6f2122ec8, causing the test cases
> testing this toolchain to fail. Let's drop those tests for now, they
> can always be re-added later on.
> Fixes:
> https://gitlab.com/buildroot.org/buildroot/-/jobs/8892697531
> https://gitlab.com/buildroot.org/buildroot/-/jobs/8892697528
> https://gitlab.com/buildroot.org/buildroot/-/jobs/8892697524
> https://gitlab.com/buildroot.org/buildroot/-/jobs/8892697519
> https://gitlab.com/buildroot.org/buildroot/-/jobs/8892697517
> https://gitlab.com/buildroot.org/buildroot/-/jobs/8892697516
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Committed to 2024.11.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-02-01 11:48 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-26 11:34 [Buildroot] [PATCH] support/testing/tests/toolchain/test_external_synopsys.py: drop tests Thomas Petazzoni via buildroot
2025-01-26 17:01 ` Julien Olivain
2025-02-01 11:48 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox