From d5371f6bcd2fe991d08fcf2006ce62e6a7449ae9 Mon Sep 17 00:00:00 2001 From: Douglas Bagnall <douglas.bagnall@catalyst.net.nz> Date: Wed, 3 Jan 2024 09:26:51 +1300 Subject: [PATCH] perftest:ndr_pack: rename SD tests with object ACEs We are looking at an optimisation for non-object ACEs, which are more common, but these tests are overwhelmed by object (OA) ACEs. Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> BUG: https://bugzilla.samba.org/show_bug.cgi?id=15574 --- source4/dsdb/tests/python/ndr_pack_performance.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/source4/dsdb/tests/python/ndr_pack_performance.py b/source4/dsdb/tests/python/ndr_pack_performance.py index 5defacf19ec..e7586028e90 100644 --- a/source4/dsdb/tests/python/ndr_pack_performance.py +++ b/source4/dsdb/tests/python/ndr_pack_performance.py @@ -171,27 +171,27 @@ class UserTests(samba.tests.TestCase): self.assertEqual(blob, blob2) - def test_pack_big_sd(self): + def test_pack_big_sd_with_object_aces(self): unpacked = self.get_desc(BIG_SD_SDDL) self._test_pack(unpacked) - def test_unpack_big_sd(self): + def test_unpack_big_sd_with_object_aces(self): blob = self.get_blob(BIG_SD_SDDL) self._test_unpack(blob) - def test_pack_unpack_big_sd(self): + def test_pack_unpack_big_sd_with_object_aces(self): unpacked = self.get_desc(BIG_SD_SDDL) self._test_pack_unpack(unpacked) - def test_pack_little_sd(self): + def test_pack_little_sd_with_object_aces(self): unpacked = self.get_desc(LITTLE_SD_SDDL) self._test_pack(unpacked) - def test_unpack_little_sd(self): + def test_unpack_little_sd_with_object_aces(self): blob = self.get_blob(LITTLE_SD_SDDL) self._test_unpack(blob) - def test_pack_unpack_little_sd(self): + def test_pack_unpack_little_sd_with_object_aces(self): unpacked = self.get_desc(LITTLE_SD_SDDL) self._test_pack_unpack(unpacked)