Message173363
> Is there some document describing procedure for building/installing/running_tests at Android device?
I'm using the android-python27 project, but you can also reproduce it under SL4A:
Start SL4A
Menu -> View -> Interpreters
Python 2.6.2 or Python 3
>>> from subprocess import Popen
>>> p = Popen("ls", shell=True)
*Fails* OSError: [Error 2] No such file or directory
>>> p = Popen("ls" shell=True, executable="/system/bin/sh")
*Works* |
|
Date |
User |
Action |
Args |
2012-10-19 23:29:36 | brousch | set | recipients:
+ brousch, gregory.p.smith, eric.araujo, rpetrov, r.david.murray, asvetlov, chris.jerdonek |
2012-10-19 23:29:36 | brousch | set | messageid: <1350689376.81.0.23582976098.issue16255@psf.upfronthosting.co.za> |
2012-10-19 23:29:36 | brousch | link | issue16255 messages |
2012-10-19 23:29:36 | brousch | create | |
|