[Asterisk-code-review] Fix handling of core dumps found in /tmp. (testsuite[master])
Jenkins2
asteriskteam at digium.com
Thu Oct 4 08:47:20 CDT 2018
Jenkins2 has submitted this change and it was merged. ( https://gerrit.asterisk.org/10425 )
Change subject: Fix handling of core dumps found in /tmp.
......................................................................
Fix handling of core dumps found in /tmp.
Change-Id: I83f4e37db9ca8c4f420c6ca276f1b40557a2a638
---
M runtests.py
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
Sean Bright: Looks good to me, but someone else must approve
George Joseph: Looks good to me, approved
Jenkins2: Approved for Submit
diff --git a/runtests.py b/runtests.py
index 3f2d0c2..3fd5b1b 100755
--- a/runtests.py
+++ b/runtests.py
@@ -228,7 +228,7 @@
contents = os.listdir('/tmp')
for item in contents:
if item.startswith('core') or item.startswith('vgcore'):
- core_files.append(item)
+ core_files.append(os.path.join('/tmp', item))
contents = os.listdir(self.test_name)
for item in contents:
--
To view, visit https://gerrit.asterisk.org/10425
To unsubscribe, or for help writing mail filters, visit https://gerrit.asterisk.org/settings
Gerrit-Project: testsuite
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: I83f4e37db9ca8c4f420c6ca276f1b40557a2a638
Gerrit-Change-Number: 10425
Gerrit-PatchSet: 1
Gerrit-Owner: Corey Farrell <git at cfware.com>
Gerrit-Reviewer: George Joseph <gjoseph at digium.com>
Gerrit-Reviewer: Jenkins2 (1000185)
Gerrit-Reviewer: Sean Bright <sean.bright at gmail.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20181004/165dd431/attachment.html>
More information about the asterisk-code-review
mailing list