diff options
Diffstat (limited to 'test/default_run.py')
-rwxr-xr-x | test/default_run.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/default_run.py b/test/default_run.py index fa6341a31d..86e4996ca1 100755 --- a/test/default_run.py +++ b/test/default_run.py @@ -978,10 +978,11 @@ def default_run(ctx, args, **kwargs): # installation. LD_LIBRARY_PATH = f"{ANDROID_ROOT}/{LIBRARY_DIRECTORY}" - # This adds libarttest(d).so to the default linker namespace when dalvikvm - # is run from /apex/com.android.art/bin. Since that namespace is essentially - # an alias for the com_android_art namespace, that gives libarttest(d).so - # full access to the internal ART libraries. + # This adds libarttest(d).so and various other test libraries to the default + # linker namespace when dalvikvm is run from /apex/com.android.art/bin. + # Since that namespace is essentially an alias for the com_android_art + # namespace, that gives libarttest(d).so full access to the internal ART + # libraries. LD_LIBRARY_PATH = f"/data/{TEST_DIRECTORY}/com.android.art/lib{SUFFIX64}:{LD_LIBRARY_PATH}" dlib = ("" if TEST_IS_NDEBUG else "d") art_test_internal_libraries = [ |