From: Douglas Bagnall Date: Tue, 2 Jan 2024 20:26:51 +0000 (+1300) Subject: perftest:ndr_pack: rename SD tests with object ACEs X-Git-Tag: tdb-1.4.11~1819 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d5371f6bcd2fe991d08fcf2006ce62e6a7449ae9;p=thirdparty%2Fsamba.git 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 Reviewed-by: Andrew Bartlett BUG: https://bugzilla.samba.org/show_bug.cgi?id=15574 --- 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)