From e86c961279bca0de7783a436e5287a81bd4da94b Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Mon, 25 Nov 2019 04:24:57 +0100 Subject: [PATCH] Reduce manyops count We test more (object types), so let's reduce the call count for each. Too slow otherwise. --- test/test_xattr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_xattr.py b/test/test_xattr.py index 9dca8ac..26d15d1 100644 --- a/test/test_xattr.py +++ b/test/test_xattr.py @@ -34,7 +34,7 @@ USER_ATTR = NAMESPACE.decode() + "." + USER_NN USER_VAL = "abc" EMPTY_VAL = "" LARGE_VAL = "x" * 2048 -MANYOPS_COUNT = 131072 +MANYOPS_COUNT = 16384 if PY3K: USER_NN = USER_NN.encode() -- 2.39.2