diff options
author | 2024-02-13 14:58:56 -0800 | |
---|---|---|
committer | 2024-02-16 12:19:38 -0800 | |
commit | 50276f07f90865f96d4c9fd9cb6a5982b939acbc (patch) | |
tree | 27116309a94dd8be593e2f339a96e34cb1018fcf /ravenwood/junit-src | |
parent | 01b38aa8986dadd026cb82cf06c1251794d07f6f (diff) |
Start loading libandroid_runtime.so
Enable android.util.Log's native code
Test: ./ravenwood/run-ravenwood-tests.sh
Bug: 318393625
Change-Id: I0ec607586d71b1cc34b71db67249e110edc304df
Diffstat (limited to 'ravenwood/junit-src')
-rw-r--r-- | ravenwood/junit-src/android/platform/test/ravenwood/RavenwoodUtils.java | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ravenwood/junit-src/android/platform/test/ravenwood/RavenwoodUtils.java b/ravenwood/junit-src/android/platform/test/ravenwood/RavenwoodUtils.java index b736a7662bd4..37ceac601e37 100644 --- a/ravenwood/junit-src/android/platform/test/ravenwood/RavenwoodUtils.java +++ b/ravenwood/junit-src/android/platform/test/ravenwood/RavenwoodUtils.java @@ -73,9 +73,9 @@ public class RavenwoodUtils { return; } } - throw new UnsatisfiedLinkError("Library " + libname + " no found in " + throw new UnsatisfiedLinkError("Library " + libname + " not found in " + "java.library.path: " + path); - } catch (Exception e) { + } catch (Throwable e) { dumpFiles(System.out); throw e; } @@ -96,6 +96,10 @@ public class RavenwoodUtils { listFiles(out, gparent, ""); } } + + var gparent = new File("../..").getCanonicalFile(); + out.println("# ../..=" + gparent); + listFiles(out, gparent, ""); } catch (Throwable th) { out.println("Error: " + th.toString()); th.printStackTrace(out); |