summaryrefslogtreecommitdiffstats
path: root/test/Java/inner-cacheable-live.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove unneeded code in new Java testMats Wichmann2023-01-131-2/+2
| | | | | | | java inner class cache teest: String didn't need to interpolate from locals() as there were no variables to fill in. Signed-off-by: Mats Wichmann <mats@linux.com>
* Fix problem where Java inner classes cannot cacheMats Wichmann2023-01-131-0/+77
Generated files contained a '$' in filename and this blew up subst. Situation arose because of a need to fetch the FS entry of the source for finding permissions. Now we use the permissions of the cached target to decide whether to chmod to add write permission, this avoids the need to call File() on the source. Signed-off-by: Mats Wichmann <mats@linux.com>