コマンドラインからAndroidCTSを起動するにはどうすればよいですか?考えられるすべての組み合わせを試しました。
~/programs/android-cts/tools$ ./startcts --config ../repository/host_config.xml start -plan CTS
などは動作しません。任意の入力は非常に高く評価されますか?
コマンドラインからAndroidCTSを起動するにはどうすればよいですか?考えられるすべての組み合わせを試しました。
~/programs/android-cts/tools$ ./startcts --config ../repository/host_config.xml start -plan CTS
などは動作しません。任意の入力は非常に高く評価されますか?
I have been using CTS version CTS4.4R3.
Below is how we can run CTS on KK .
Go to "tools" folder in CTS4.4R3 and enter the below commands :
command to Run CTS :
.../tools$./cts-tradefed
>run cts --plan CTS
Creating a Plan for Failed Cases in the 1st run:
add derivedplan -p "anyName"-s <SessionID> -r fail
Run added Plan : run cts --plan <PlanName>
SessionID can be checked as : list results
Running individual class in CTS :
run cts -c <ClassName>
run cts -c com.android.cts.monkey.android.widget.cts.AutoCompleteTextViewTest
toolsフォルダーでコマンドstartctsを実行します
<install_dir>/tools$./startcts
ctsシェルが表示されます。以下に示すように実行するプランを選択してください
cts_host > ls --plan
List of plans (10 in total):
Android
AppSecurity
CTS-TF
CTS
Java
Performance
RefApp
Signature
VM-TF
VM
cts_host > start --plan Android
どうやらそれはCTSソースコードを読んでからパラメータを正しく取得するだけの問題です::)
$ ./startcts start --plan CTS