From 3884a7712b74c09d4216b856464d6c3cdd9e3476 Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Mon, 9 Mar 2020 19:34:31 +0100 Subject: fmt all src/allocators using yapf --- src/allocators/rpmalloc.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/allocators/rpmalloc.py') diff --git a/src/allocators/rpmalloc.py b/src/allocators/rpmalloc.py index c10944e..c27f244 100644 --- a/src/allocators/rpmalloc.py +++ b/src/allocators/rpmalloc.py @@ -14,7 +14,6 @@ # # You should have received a copy of the GNU General Public License # along with allocbench. - """rpmalloc definition for allocbench""" from src.allocator import Allocator @@ -29,10 +28,11 @@ class Rpmalloc(Allocator): def __init__(self, name, **kwargs): self.LD_PRELOAD = "{dir}/librpmalloc.so" - self.build_cmds = ["cd {srcdir}; ./configure.py", - "cd {srcdir}; ninja", - "mkdir -p {dir}", - 'ln -f -s $(find {srcdir}/bin -path "*release*librpmalloc.so") {dir}/librpmalloc.so'] + self.build_cmds = [ + "cd {srcdir}; ./configure.py", "cd {srcdir}; ninja", + "mkdir -p {dir}", + 'ln -f -s $(find {srcdir}/bin -path "*release*librpmalloc.so") {dir}/librpmalloc.so' + ] super().__init__(name, **kwargs) -- cgit v1.2.3