החל מ-27 במרץ 2025, מומלץ להשתמש ב-android-latest-release
במקום ב-aosp-main
כדי ליצור תרומות ל-AOSP. מידע נוסף זמין במאמר שינויים ב-AOSP.
הצגה ופתרון בעיות בבדיקות CTS
קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
בדף הזה מוסבר איך לפתור בעיות שקשורות לבדיקות CTS ולתקן אותן.
תיקון שגיאה מסוג 'אין מספיק זיכרון'
אם נתקלתם בשגיאה מסוג 'אין מספיק זיכרון' במהלך בדיקת CTS, כמו java.lang.OutOfMemoryError: Java heap space
, צריך להגדיל את נפח הזיכרון המקסימלי שזמין במהלך הרצת הבדיקה:
עורכים את הסקריפט cts-tradefed
ב-WORKING_DIRECTORY/cts/tools/cts-tradefed/etc/
.
כדי להגדיל את מספר השרשור של מכונה וירטואלית של Java (JVM), צריך להגדיל את הערך של הדגל -Xmx
. בדוגמה הבאה הערך מוגדל ל-16GB:
${JAVA_BINARY} $RDBG_FLAG -Xmx16g -XX:+HeapDumpOnOutOfMemoryError -cp ${JAR_PATH} -DCTS_ROOT=${CTS_ROOT} com.android.compatibility.common.tradefed.command.CompatibilityConsole "$@"
פתרון בעיות בבדיקות סטרימינג
אם אתם לא יכולים להעביר קבצים בסטרימינג משרת מרוחק בגלל הגבלות של חומת אש, עליכם להתקין קובצי וידאו בשרת קבצים מקומי ולהריץ בדיקות מדיה באופן מקומי. מידע נוסף זמין במאמר הרצת בדיקות מדיה באופן מקומי.
דוגמאות התוכן והקוד שבדף הזה כפופות לרישיונות המפורטים בקטע רישיון לתוכן. Java ו-OpenJDK הם סימנים מסחריים או סימנים מסחריים רשומים של חברת Oracle ו/או של השותפים העצמאיים שלה.
עדכון אחרון: 2025-07-27 (שעון UTC).
[[["התוכן קל להבנה","easyToUnderstand","thumb-up"],["התוכן עזר לי לפתור בעיה","solvedMyProblem","thumb-up"],["סיבה אחרת","otherUp","thumb-up"]],[["חסרים לי מידע או פרטים","missingTheInformationINeed","thumb-down"],["התוכן מורכב מדי או עם יותר מדי שלבים","tooComplicatedTooManySteps","thumb-down"],["התוכן לא עדכני","outOfDate","thumb-down"],["בעיה בתרגום","translationIssue","thumb-down"],["בעיה בדוגמאות/בקוד","samplesCodeIssue","thumb-down"],["סיבה אחרת","otherDown","thumb-down"]],["עדכון אחרון: 2025-07-27 (שעון UTC)."],[],[],null,["# View and troubleshoot CTS tests\n\nThis page explains how to troubleshoot and fix issues related to CTS testing.\n\nFix out of memory error\n-----------------------\n\nIf you encounter an out of memory error during CTS testing, such as\n`java.lang.OutOfMemoryError: Java heap space`, increase the maximum memory\navailable during test run:\n\n1. Edit the `cts-tradefed` script in \u003cvar translate=\"no\"\u003eWORKING_DIRECTORY\u003c/var\u003e`/cts/tools/cts-tradefed/etc/`.\n\n2. Increase the number of Java virtual machine (JVM) threads by increasing the value for the `-Xmx` flag. The following example increases the value to 16 GB:\n\n ${JAVA_BINARY} $RDBG_FLAG -Xmx16g -XX:+HeapDumpOnOutOfMemoryError -cp ${JAR_PATH} -DCTS_ROOT=${CTS_ROOT} com.android.compatibility.common.tradefed.command.CompatibilityConsole \"$@\"\n\nFix issues with streaming tests\n-------------------------------\n\nIf you can't stream files from a remote server due to firewall restrictions,\nyou must install video files on a local file server and run media tests locally. For more information, refer to [Run media tests locally](/docs/compatibility/cts/run-locally)."]]