Skip to main content

force android tests to run on different emulators from command line batch file



How can I run my android junit/robotium tests from the command line on every single emulator? I want to make sure my tests run on many android OS versions and many screen resolutions.





I'd like to write a batch file that runs from the windows command line to run my test suite over and over again on each emulator I have installed.





To run from the command line I can do this:







adb shell am instrument -w com.myapp.client.test/android.test.InstrumentationTestRunner







but that just runs it on the default emulator. How can I force that command to run on all of the emulators I have setup?





Ideally, the batch file would looking something like:





  1. launch emulator1



  2. run tests



  3. close emulator1



  4. launch emulator2



  5. run tests



  6. close emulator2



  7. ...







I don't know how to do the launch and close part.





Thanks








EDIT: Found solutions. Below is my batch file







set PORTRAIT=medium

set LANDSCAPE=large



:: launch emulator

emulator -avd android2.2



:: wait for emulator to load

adb wait-for-device



:: install apps?



:: run tests in portrait

adb shell am instrument -w -e size %PORTRAIT% com.myapp.client.test/android.test.InstrumentationTestRunner



:: run tests in landscape

adb shell am instrument -w -e size %LANDSCAPE% com.myapp.client.test/android.test.InstrumentationTestRunner



:: pull screenshots

adb pull /sdcard/ c:\



:: close/kill emulator (android bug here, so must use windows taskkill)

taskkill /IM emulator-arm.exe




Comments

Popular posts from this blog

Why is this Javascript much *slower* than its jQuery equivalent?

I have a HTML list of about 500 items and a "filter" box above it. I started by using jQuery to filter the list when I typed a letter (timing code added later): $('#filter').keyup( function() { var jqStart = (new Date).getTime(); var search = $(this).val().toLowerCase(); var $list = $('ul.ablist > li'); $list.each( function() { if ( $(this).text().toLowerCase().indexOf(search) === -1 ) $(this).hide(); else $(this).show(); } ); console.log('Time: ' + ((new Date).getTime() - jqStart)); } ); However, there was a couple of seconds delay after typing each letter (particularly the first letter). So I thought it may be slightly quicker if I used plain Javascript (I read recently that jQuery's each function is particularly slow). Here's my JS equivalent: document.getElementById('filter').addEventListener( 'keyup', function () { var jsStart = (new Date).getTime()...

Is it possible to have IF statement in an Echo statement in PHP

Thanks in advance. I did look at the other questions/answers that were similar and didn't find exactly what I was looking for. I'm trying to do this, am I on the right path? echo " <div id='tabs-".$match."'> <textarea id='".$match."' name='".$match."'>". if ($COLUMN_NAME === $match) { echo $FIELD_WITH_COLUMN_NAME; } else { } ."</textarea> <script type='text/javascript'> CKEDITOR.replace( '".$match."' ); </script> </div>"; I am getting the following error message in the browser: Parse error: syntax error, unexpected T_IF Please let me know if this is the right way to go about nesting an IF statement inside an echo. Thank you.