osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/38644?usp=email )
Change subject: testenv: more tweaks for container shutdown logic
......................................................................
testenv: more tweaks for container shutdown logic
* Don't do "podman wait" when restarting the container. The idea was to
really wait before the current container was shutdown before
restarting one with the same name. But even with the wait we got "the
container name ... is already in use" errors and so we use different
names when restarting the container since 6fe837de ("testenv: podman:
restart_count in container_name"). This means "podman wait" is not
needed anymore.
* feed_watchdog_loop: change sleep from 5s to 2s, as we wait up to that
long after the container was shutdown, before testenv stops. 5s is
quite noticable compared to 2s when running the script locally.
* feed_watchdog_loop: hide stderr of "podman exec" since it will print
"Error: container ... does not exist in database: no such container"
during shutdown. This is expected as we stop the container, but it
looks like an actual error. We already have a more userfriendly
message "feed_watchdog_loop: podman container has stopped" that will
appear when the "podman exec" fails during shutdown.
Change-Id: I71721fd41f044817e4021aea045a288f88506f76
---
M _testenv/testenv/podman.py
1 file changed, 2 insertions(+), 5 deletions(-)
Approvals:
Jenkins Builder: Verified
pespin: Looks good to me, but someone else must approve
fixeria: Looks good to me, approved
diff --git a/_testenv/testenv/podman.py b/_testenv/testenv/podman.py
index dc1b333..16db400 100644
--- a/_testenv/testenv/podman.py
+++ b/_testenv/testenv/podman.py
@@ -176,8 +176,8 @@
# container will terminate after a few seconds.
try:
while True:
- time.sleep(5)
- p = subprocess.run(["podman", "exec", container_name, "touch", "/tmp/watchdog"])
+ time.sleep(2)
+ p = subprocess.run(["podman", "exec", container_name, "touch", "/tmp/watchdog"], stderr=subprocess.DEVNULL)
if p.returncode:
logging.debug("feed_watchdog_loop: podman container has stopped")
return
@@ -340,9 +340,6 @@
testenv.cmd.run(["podman", "kill", container_name], no_podman=True, check=False)
- if restart:
- testenv.cmd.run(["podman", "wait", container_name], no_podman=True, check=False)
-
container_name = None
if restart:
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/38644?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I71721fd41f044817e4021aea045a288f88506f76
Gerrit-Change-Number: 38644
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/38643?usp=email )
Change subject: testenv: show testsuite results at the end
......................................................................
testenv: show testsuite results at the end
Show the testsuite results from junit-*.log not after each testenv*.cfg
file is through, but for all of them at the end. This way the results
are in one place when running with multiple configs, we don't need to
scroll to the middle of the huge log to find out what tests passed with
a previous config.
Adjust the podman container stop and restart logic, so the last
container is still running until we use it for showing the results.
Change-Id: Ie4b70724a33932cd98ba0972db37bf72dc8affb8
---
M _testenv/testenv.py
M _testenv/testenv/testsuite.py
2 files changed, 12 insertions(+), 8 deletions(-)
Approvals:
pespin: Looks good to me, but someone else must approve
fixeria: Looks good to me, approved
Jenkins Builder: Verified
diff --git a/_testenv/testenv.py b/_testenv/testenv.py
index 23a2922..81b3aac 100755
--- a/_testenv/testenv.py
+++ b/_testenv/testenv.py
@@ -47,6 +47,10 @@
# Run the components + testsuite
cfg_count = 0
for cfg_name, cfg in testenv.testenv_cfg.cfgs.items():
+ # Restart podman container before running with another config
+ if testenv.args.podman and cfg_count:
+ testenv.podman.stop(True)
+
testenv.testenv_cfg.set_current(cfg_name)
if testenv.args.binary_repo:
@@ -58,15 +62,15 @@
testenv.testsuite.run(cfg)
testenv.daemons.stop()
testenv.testdir.clean_run_scripts("finished")
- testenv.testsuite.cat_junit_logs()
cfg_count += 1
testenv.set_log_prefix("[testenv]")
- # Restart podman container before running with another config
- if testenv.args.podman:
- restart = cfg_count < len(testenv.testenv_cfg.cfgs)
- testenv.podman.stop(restart)
+ # Show test results
+ testenv.testsuite.cat_junit_logs()
+
+ if testenv.args.podman:
+ testenv.podman.stop()
def init_podman():
diff --git a/_testenv/testenv/testsuite.py b/_testenv/testenv/testsuite.py
index 3bc8d9d..1878b5c 100644
--- a/_testenv/testenv/testsuite.py
+++ b/_testenv/testenv/testsuite.py
@@ -145,10 +145,10 @@
colors = os.environ.get("TESTENV_SOURCE_HIGHLIGHT_COLORS", "esc256")
tool = f"source-highlight -f {shlex.quote(colors)} -s xml -i"
- pattern = os.path.join(testenv.testdir.testdir, "testsuite", "junit-*.log")
- for path in glob.glob(pattern):
+ pattern = os.path.join(testenv.testdir.testdir_topdir, "**", "junit-*.log")
+ for path in glob.glob(pattern, recursive=True):
cmd = f"echo && {tool} {shlex.quote(path)} && echo"
- logging.info(f"Showing {os.path.basename(path)}")
+ logging.info(f"Showing {os.path.relpath(path, testenv.testdir.testdir_topdir)}")
testenv.cmd.run(cmd)
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/38643?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: Ie4b70724a33932cd98ba0972db37bf72dc8affb8
Gerrit-Change-Number: 38643
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Hello Jenkins Builder,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/libosmo-sigtran/+/38660?usp=email
to look at the new patch set (#2).
The following approvals got outdated and were removed:
Verified+1 by Jenkins Builder
Change subject: sigtran: Add API osmo_ss7_instances_llist_entry
......................................................................
sigtran: Add API osmo_ss7_instances_llist_entry
This API allows iterating over the public global list of ss7 instances,
without knowing the structure internal layout.
Change-Id: I148438aecd64bdd66848d4b3404d379a380c5e9c
---
M TODO-RELEASE
M include/osmocom/sigtran/osmo_ss7.h
M src/osmo_ss7.c
3 files changed, 16 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-sigtran refs/changes/60/38660/2
--
To view, visit https://gerrit.osmocom.org/c/libosmo-sigtran/+/38660?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newpatchset
Gerrit-Project: libosmo-sigtran
Gerrit-Branch: master
Gerrit-Change-Id: I148438aecd64bdd66848d4b3404d379a380c5e9c
Gerrit-Change-Number: 38660
Gerrit-PatchSet: 2
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Jenkins Builder has posted comments on this change by dexter. ( https://gerrit.osmocom.org/c/pysim/+/38658?usp=email )
Change subject: pySim-shell_test: add new testcase for card initialization
......................................................................
Patch Set 1:
(1 comment)
File tests/pySim-shell_test/card_init/test_card_init.script:
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-19666):
https://gerrit.osmocom.org/c/pysim/+/38658/comment/f3aabcf1_52875840?usp=em… :
PS1, Line 13: reset
trailing whitespace
--
To view, visit https://gerrit.osmocom.org/c/pysim/+/38658?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: I01a03fa07d8c62164453bd707c5943288ff1a972
Gerrit-Change-Number: 38658
Gerrit-PatchSet: 1
Gerrit-Owner: dexter <pmaier(a)sysmocom.de>
Gerrit-CC: Jenkins Builder
Gerrit-Comment-Date: Tue, 05 Nov 2024 17:31:09 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No