1C-Suite Trade Federation 2--------------------------- 3 4App Compatibility Test Suite Trade Federation, csuite-tradefed for short, is built on 5top of the Android Trade Federation test harness to test app compatibility. 6 7Configuring csuite-tradefed 8--------------------------- 9 10Ensure 'adb' is in your current PATH. adb can be found in the 11Android SDK available from http://developer.android.com 12 13Example: 14 PATH=$PATH:/home/myuser/android-sdk-linux_x86/platform-tools 15 16And ensure that the device is visible via 'adb devices' 17 18Using csuite-tradefed 19--------------------------- 20 21To run a test plan on a single device: 22 231. Make sure you have at least one device connected 242. Launch the csuite-tradefed console by running the 'csuite-tradefed'. If you 25are working from the Android source tree and have run 'm csuite', 26the script can be found at 27 out/host/linux-x86/csuite/android-csuite/tools/csuite-tradefed 28 29C-Suite Tradefed Development 30--------------------------- 31 32See http://source.android.com for instructions on obtaining the Android 33platform source code and setting up a build environment. 34 35The source for the tradefed framework can be found on the 'tradefed' branch. 36 37Perform these steps to build and run csuite from the development environment: 38 39cd <path to android source root> 40make csuite 41csuite-tradefed 42run <plan-name> 43 44More documentation and details on using and extending trade federation will 45be forthcoming in the near future. 46