From d9b8e95009c82a23193d461b89950dfde34966c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Per=20=C3=85strand?= Date: Thu, 26 Sep 2024 15:39:32 +0200 Subject: [PATCH] Split up split test to collect artifacts correctly MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Running two sets of test with the same name produces artifacts within the same directory. Signed-off-by: Per Åstrand Change-Id: I5da1b20ead1419c7593247aeb23ea560f33a575b --- backends/arm/test/ops/test_split.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/backends/arm/test/ops/test_split.py b/backends/arm/test/ops/test_split.py index 02133d4e7f4..3f6edc0c2b8 100644 --- a/backends/arm/test/ops/test_split.py +++ b/backends/arm/test/ops/test_split.py @@ -124,8 +124,11 @@ def test_split_with_sizes_tosa_MI(self, test_data: test_data_t): self._test_split_tosa_MI_pipeline(self.SplitWithSizes(), test_data) @parameterized.expand(Split.test_data) - def test_split_n_out_tosa_MI(self, test_data: test_data_t): + def test_split_one_out_tosa_MI(self, test_data: test_data_t): self._test_split_tosa_MI_pipeline(self.SplitSingleOut(), test_data) + + @parameterized.expand(Split.test_data) + def test_split_two_out_tosa_MI(self, test_data: test_data_t): self._test_split_tosa_MI_pipeline(self.SplitTwoOut(), test_data) @parameterized.expand(Split.test_data)