std::string GetTestLibRoot() { // Typically the executable is /data/nativetest[64]/bionic-unit-tests/bionic-unit-tests, and the // test libraries are in /data/nativetest[64]/bionic-unit-tests/bionic-loader-test-libs.
std::string path = android::base::GetExecutableDirectory();
std::string out_path; if (!android::base::Realpath(path.c_str(), &out_path)) {
fprintf(stderr, "Failed to get realpath for \"%s\"\n", path.c_str());
abort();
}
out_path += "/bionic-loader-test-libs";
std::string real_path; if (!android::base::Realpath(out_path, &real_path)) {
fprintf(stderr, "\"%s\": does not exist\n", out_path.c_str());
abort();
}
return real_path;
}
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.13 Sekunden
(vorverarbeitet am 2026-06-28)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.