Ejemplo n.º 1
0
 def __init__(self, name):
     ExecTest.__init__(self, \
             [gleanExecutable(),
             "-o",
             "-v", "-v", "-v",
             "-t", "+"+name] + GleanTest.globalParams)
     self.name = name
Ejemplo n.º 2
0
 def __init__(self, name):
     ExecTest.__init__(self, \
      [gleanExecutable(),
      "-o",
      "-v", "-v", "-v",
      "-t", "+"+name])
     self.name = name
Ejemplo n.º 3
0
	def __init__(self, name, resdir):
		ExecTest.__init__(self, \
			[gleanExecutable(), "-r", os.path.join(gleanResultDir(resdir), name),
			"-o",
			"-v", "-v", "-v",
			"-t", "+"+name])

		checkDir(os.path.join(gleanResultDir(resdir), name), False)

		self.name = name
Ejemplo n.º 4
0
	def __init__(self, name, resdir):
		ExecTest.__init__(self, \
			[gleanExecutable(), "-r", os.path.join(gleanResultDir(resdir), name),
			"-o",
			"-v", "-v", "-v",
			"-t", "+"+name])

		if resdir[0] not in '$%':
			checkDir(os.path.join(gleanResultDir(resdir), name), False)

		self.name = name
Ejemplo n.º 5
0
	def run(self, valgrind):
                self.command += GleanTest.globalParams
                return ExecTest.run(self, valgrind)
Ejemplo n.º 6
0
 def __init__(self, name):
     ExecTest.__init__(
         self,
         [gleanExecutable(), "-o", "-v", "-v", "-v", "-t", "+" + name] +
         GleanTest.globalParams)
     self.name = name