Skip to content

Commit

Permalink
Add the extension parameter for all commodule in method launch_app
Browse files Browse the repository at this point in the history
  • Loading branch information
Shao-Feng committed Mar 29, 2016
1 parent a403314 commit f67d140
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion testkitlite/commodule/androidmobile.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ def stop_debug(self):
debug_flag = False
metux.release()

def launch_app(self, wgt_name):
def launch_app(self, wgt_name, extension=None):
blauched = False
if wgt_name.find('xwalk') != -1:
timecnt = 0
Expand Down
2 changes: 1 addition & 1 deletion testkitlite/commodule/deepin.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ def stop_debug(self):
debug_flag = False
metux.release()

def launch_app(self, wgt_name):
def launch_app(self, wgt_name, extension=None):
cmd = EXPORT_DEEPIN %(DEEPIN_USER)
shell_command(cmd)
blauched = False
Expand Down
2 changes: 1 addition & 1 deletion testkitlite/commodule/localhost.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def get_launcher_opt(self, test_launcher, test_ext, test_widget, test_suite, tes
test_opt["test_app_id"] = test_launcher
return test_opt

def launch_app(self, wgt_name):
def launch_app(self, wgt_name, extension=None):
exit_code, ret = shell_command(wgt_name + '&')
return True

Expand Down
2 changes: 1 addition & 1 deletion testkitlite/commodule/tizenivi.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ def stop_debug(self):
global debug_flag
debug_flag = False

def launch_app(self, wgt_name):
def launch_app(self, wgt_name, extension=None):
blauched = False
if self._wrt:
timecnt = 0
Expand Down
2 changes: 1 addition & 1 deletion testkitlite/commodule/tizenlocal.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ def stop_debug(self):
debug_flag = False
metux.release()

def launch_app(self, wgt_name):
def launch_app(self, wgt_name, extension=None):
blauched = False
if self._wrt:
timecnt = 0
Expand Down
2 changes: 1 addition & 1 deletion testkitlite/commodule/tizenmobile.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ def stop_debug(self):
debug_flag = False
metux.release()

def launch_app(self, wgt_name):
def launch_app(self, wgt_name, extension=None):
blauched = False
if self._wrt:
timecnt = 0
Expand Down

0 comments on commit f67d140

Please sign in to comment.