Correcting Java issues; improvements for make clean

This commit is contained in:
2022-05-17 23:52:04 -05:00
parent 4398103dc4
commit 0324ce8bbe
4 changed files with 6 additions and 9 deletions

View File

@@ -21,7 +21,7 @@ def test_cs():
def test_java():
print(os.getcwd())
fh = os.popen("/usr/lib/jvm/java-15-openjdk/bin/java HelloWorld", mode='r', buffering=-1)
fh = os.popen("/usr/lib/jvm/java-18-openjdk/bin/java HelloWorld", mode='r', buffering=-1)
output = fh.read()
retcode = fh.close()
assert retcode == None and CheckOutput(output)