Hi, I have two emulators running on my machine. now with adb am instrument command i can run the instrumentation test on single emulator at a time. So, two run the instrumentation test on both the emulator i need to fire two commands separately like below:
command prompt 1: adb -s emulator-5554 shell am instrument -w <test_package_name>/<runner_class> command prompt 2: adb -s emulator-5556 shell am instrument -w <test_package_name>/<runner_class> Is there any way to start the instrumentation test on both the emulators simultaneous with ONLY one command? Note that, I am using ANT to run the instrumentation test. Also, please suggest any other ways of doing so... Thanks, Isha -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

