Skip to content

Commit b9aaf96

Browse files
perfacebook-github-bot
authored andcommitted
Split up split test to collect artifacts correctly (#5785)
Summary: Running two sets of test with the same name produces artefacts within the same directory, which causes problems when collating the tests to folders. Change-Id: I5da1b20ead1419c7593247aeb23ea560f33a575b Pull Request resolved: #5785 Reviewed By: mergennachin Differential Revision: D63808459 Pulled By: digantdesai fbshipit-source-id: bf24c7c2c24fcc9f4955f1df7207449309eef865
1 parent 3da2658 commit b9aaf96

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

backends/arm/test/ops/test_split.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,11 @@ def test_split_with_sizes_tosa_MI(self, test_data: test_data_t):
124124
self._test_split_tosa_MI_pipeline(self.SplitWithSizes(), test_data)
125125

126126
@parameterized.expand(Split.test_data)
127-
def test_split_n_out_tosa_MI(self, test_data: test_data_t):
127+
def test_split_one_out_tosa_MI(self, test_data: test_data_t):
128128
self._test_split_tosa_MI_pipeline(self.SplitSingleOut(), test_data)
129+
130+
@parameterized.expand(Split.test_data)
131+
def test_split_two_out_tosa_MI(self, test_data: test_data_t):
129132
self._test_split_tosa_MI_pipeline(self.SplitTwoOut(), test_data)
130133

131134
@parameterized.expand(Split.test_data)

0 commit comments

Comments
 (0)