This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
ninjab3s gerrit-no-reply at lists.osmocom.orgninjab3s has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-gsm-tester/+/21299 )
Change subject: process.py: Add execution of local processes
......................................................................
process.py: Add execution of local processes
run_local() encapsulates the execution of local processes.
Change-Id: I627acfefa1b476ebb767f6af44ba717db79afd51
---
M src/osmo_gsm_tester/core/process.py
1 file changed, 9 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-gsm-tester refs/changes/99/21299/1
diff --git a/src/osmo_gsm_tester/core/process.py b/src/osmo_gsm_tester/core/process.py
index eaf8de7..ffc42c1 100644
--- a/src/osmo_gsm_tester/core/process.py
+++ b/src/osmo_gsm_tester/core/process.py
@@ -443,14 +443,21 @@
super().__init__(name, run_dir, remote_user, remote_host, remote_cwd, args, **popen_kwargs)
def run_local_sync(run_dir, name, popen_args):
- run_dir =run_dir.new_dir(name)
+ run_dir = run_dir.new_dir(name)
proc = Process(name, run_dir, popen_args)
proc.launch_sync()
return proc
+def run_local(run_dir, name, popen_args):
+ run_dir = run_dir.new_dir(name)
+ proc = Process(name, run_dir, popen_args)
+ proc.launch()
+ return proc
+
def run_local_netns_sync(run_dir, name, netns, popen_args):
- run_dir =run_dir.new_dir(name)
+ run_dir = run_dir.new_dir(name)
proc = NetNSProcess(name, run_dir, netns, popen_args)
proc.launch_sync()
return proc
+
# vim: expandtab tabstop=4 shiftwidth=4
--
To view, visit https://gerrit.osmocom.org/c/osmo-gsm-tester/+/21299
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-gsm-tester
Gerrit-Branch: master
Gerrit-Change-Id: I627acfefa1b476ebb767f6af44ba717db79afd51
Gerrit-Change-Number: 21299
Gerrit-PatchSet: 1
Gerrit-Owner: ninjab3s <nils.fuerste at softwareradiosystems.com>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20201123/199a7cbe/attachment.htm>