Updates for Java and makepkg changes

This commit is contained in:
2021-01-16 19:37:29 -06:00
parent 216021b633
commit e4184ec775
4 changed files with 8 additions and 7 deletions

View File

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