#!/bin/bash # Helper script for running CTS tests with all the right params. # Example usage: # run-test // To run all the tests in a package. # run-test . // To run all the tests in a class. # run-test .# // To run a specific test in a class. echo " " echo "Running module $1 test...$2" echo " " cts-tradefed run commandAndExit cts-dev --module $1 --test $2 --disable-reboot --skip-device-info --skip-all-system-status-check --skip-preconditions