InstallKernelModulePreparer

public class InstallKernelModulePreparer
extends BaseTargetPreparer implements ILabPreparer

java.lang.Object의 클래스
   ↳ com.android.tradefed.targetprep.BaseTargetPreparer
     ↳ com.android.tradefed.targetprep.InstallKernelModulePreparer


Android 공통 커널 일반 이미지로 기기를 플래시하는 타겟 준비자입니다. 자세한 내용은 자세한 내용은 https://source.android.com/devices/architecture/kernel/android-common 페이지를 참조하세요.

요약

공개 생성자

InstallKernelModulePreparer()

공개 메서드

void setUp(TestInformation testInfo)

테스트를 위한 타겟 설정을 실행합니다.

void tearDown(TestInformation testInfo, Throwable e)

테스트 후 타겟 정리/해체를 수행합니다.

보호된 메서드

String[] getDependentModules(String modName, String lsmodOutput)
String getDisplayedModuleName(String fullPath)

로드 후 표시되는 모듈 이름을 반환합니다.

공개 생성자

InstallKernelModulePreparer

public InstallKernelModulePreparer ()

공개 메서드

설정

public void setUp (TestInformation testInfo)

테스트를 위한 타겟 설정을 실행합니다.

매개변수
testInfo TestInformation: 호출의 TestInformation입니다.

생성 값
BuildError
DeviceNotAvailableException
TargetSetupError

해체

public void tearDown (TestInformation testInfo, 
                Throwable e)

테스트 후 타겟 정리/해체를 수행합니다.

매개변수
testInfo TestInformation: 호출의 TestInformation입니다.

e Throwable: 호출이 예외로 종료된 경우 호출 수준에서 포착됩니다. 그렇지 않은 경우에는 null입니다.

생성 값
DeviceNotAvailableException

보호된 메서드

getDependentModule

protected String[] getDependentModules (String modName, 
                String lsmodOutput)

매개변수
modName String

lsmodOutput String

반환 값
String[]

getDisplayedModuleName

protected String getDisplayedModuleName (String fullPath)

로드 후 표시되는 모듈 이름을 반환합니다.

예를 들어 파일 이름과 `lsmod`에서 반환된 파일 이름의 차이점을 확인합니다.

$ insmod kunit.ko
 $ lsmod | grep kunit
 kunit 20480 0
 

매개변수
fullPath String

반환 값
String