def run(self, control=False): for arch in self.arches: for opt, debug in self.opts: a_bin = self.ref_dir(arch, opt, self.make_dir, self.bin_name) b_bin = a_bin if control else self.proto_dir(arch, opt, self.make_dir, self.bin_name) pfscan_args = ["-i", "-n4", self.cwd()] util.hash_cmp_run([a_bin] + pfscan_args, [b_bin] + pfscan_args, verbose=self.verbose)
def run(self, control=False): for arch in self.arches: for opt, debug in self.opts: a_bin = self.ref_dir(arch, opt, self.make_dir, self.bin_name) b_bin = a_bin if control else self.proto_dir( arch, opt, self.make_dir, self.bin_name) args = ['-zcqk', self.cwd('local_files.tar')] util.hash_cmp_run([a_bin] + args, [b_bin] + args, verbose=self.verbose)
def run(self, control=False): for arch in self.arches: for opt, debug in self.opts: a_bin = self.ref_dir(arch, opt, self.make_dir, self.bin_name) b_bin = a_bin if control else self.proto_dir( arch, opt, self.make_dir, self.bin_name) pfscan_args = ['-i', '-n4', self.cwd()] util.hash_cmp_run([a_bin] + pfscan_args, [b_bin] + pfscan_args, verbose=self.verbose)
def run(self, control=False): for arch in self.arches: for opt,debug in self.opts: a_bin = self.ref_dir(arch, opt, self.make_dir, self.bin_name) b_bin = a_bin if control else self.proto_dir(arch, opt, self.make_dir, self.bin_name) args = ['-zcqk', self.cwd('local_files.tar')] util.hash_cmp_run([a_bin] + args, [b_bin] + args, verbose=self.verbose)