diff options
Diffstat (limited to 'test/971-iface-super/util-src/generate_java.py')
-rwxr-xr-x | test/971-iface-super/util-src/generate_java.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/971-iface-super/util-src/generate_java.py b/test/971-iface-super/util-src/generate_java.py index dafe7f5664..c043a4afd7 100755 --- a/test/971-iface-super/util-src/generate_java.py +++ b/test/971-iface-super/util-src/generate_java.py @@ -69,7 +69,6 @@ class Compiler: files = list(map(str, files)) cmd = ['sh', '-a', '-e', '--', str(self.javac)] + args + sorted(files) subprocess.check_call(cmd) - print("Compiled {} files".format(len(files))) def execute(self): """ @@ -108,7 +107,6 @@ class Compiler: self.compile_files("-d {outdir} -cp {outdir}".format(outdir = self.classes_dir), files) # Remove these from the set of interfaces to be compiled. ifaces -= tops - print("Finished compiling all files.") return def main(argv): @@ -129,7 +127,6 @@ def main(argv): with expected_txt.open('w') as out: print(mainclass.get_expected(), file=out) - print("Wrote expected output") Compiler(all_files, javac_exec, temp_dir, classes_dir).execute() |