Fix loading tests on macos 12 (#5388)

This commit is contained in:
Thad House
2023-06-09 23:40:20 -07:00
committed by GitHub
parent d5ed9fb859
commit c3e04a6ea2
5 changed files with 10 additions and 0 deletions

View File

@@ -125,10 +125,12 @@ model {
test.dependsOn it.tasks.install
test.systemProperty 'java.library.path', filePath
test.environment 'LD_LIBRARY_PATH', filePath
test.environment 'DYLD_LIBRARY_PATH', filePath
test.workingDir filePath
run.dependsOn it.tasks.install
run.systemProperty 'java.library.path', filePath
run.environment 'LD_LIBRARY_PATH', filePath
run.environment 'DYLD_LIBRARY_PATH', filePath
run.workingDir filePath
found = true