Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[MBI] Don't change contracts with method overrides.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Tue, 29 Mar 2022 19:59:00 +0000 (21:59 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Tue, 29 Mar 2022 21:13:09 +0000 (23:13 +0200)
teshsuite/smpi/MBI/MBIutils.py
teshsuite/smpi/MBI/simgrid.py

index 4162195..67f81d4 100644 (file)
@@ -33,7 +33,7 @@ class AbstractTool:
         """
         # pass
 
-    def run(self, execcmd, filename, binary, num_id, timeout):
+    def run(self, execcmd, filename, binary, num_id, timeout, batchinfo):
         """Compile that test code and anaylse it with the Tool if needed (a cache system should be used)"""
         # pass
 
index b7b0216..fb5d27f 100644 (file)
@@ -31,7 +31,7 @@ class Tool(mbi.AbstractTool):
         os.chdir(here)
 
 
-    def ensure_image(self):
+    def ensure_image(self, params=None, dockerparams=None):
         mbi.AbstractTool.ensure_image(self, "-x simgrid")
 
     def setup(self, rootdir):