Bug 1084988
| Summary: | rlRun uses $i internally, overwriting my global variable $i | |||
|---|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Arjun Shankar <ashankar> | |
| Component: | beakerlib | Assignee: | Petr Muller <pmuller> | |
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | |
| Severity: | medium | Docs Contact: | ||
| Priority: | unspecified | |||
| Version: | 20 | CC: | mcermak, mfranc, ohudlick, pmuller, psplicha | |
| Target Milestone: | --- | |||
| Target Release: | --- | |||
| Hardware: | All | |||
| OS: | Linux | |||
| Whiteboard: | Release | |||
| Fixed In Version: | beakerlib-1.9-3.fc20 | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | ||
| Clone Of: | ||||
| : | 1103284 (view as bug list) | Environment: | ||
| Last Closed: | 2014-07-30 06:57:24 UTC | Type: | Bug | |
| Regression: | --- | Mount Type: | --- | |
| Documentation: | --- | CRM: | ||
| Verified Versions: | Category: | --- | ||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | ||
| Cloudforms Team: | --- | Target Upstream Version: | ||
| Embargoed: | ||||
| Bug Depends On: | ||||
| Bug Blocks: | 1116308, 1116317 | |||
https://git.fedorahosted.org/cgit/beakerlib.git/commit/?id=57e61d316146cf0e0256d3e270ee052e38244a61 https://git.fedorahosted.org/cgit/beakerlib.git/commit/?id=0ab847bfdfe33709398cbefd274884f61e2ed62f beakerlib-1.9-1.fc20 has been submitted as an update for Fedora 20. https://admin.fedoraproject.org/updates/beakerlib-1.9-1.fc20 Package beakerlib-1.9-1.fc20: * should fix your issue, * was pushed to the Fedora 20 testing repository, * should be available at your local mirror within two days. Update it with: # su -c 'yum update --enablerepo=updates-testing beakerlib-1.9-1.fc20' as soon as you are able to. Please go to the following url: https://admin.fedoraproject.org/updates/FEDORA-2014-7442/beakerlib-1.9-1.fc20 then log in and leave karma (feedback). beakerlib-1.9-2.fc20 has been submitted as an update for Fedora 20. https://admin.fedoraproject.org/updates/beakerlib-1.9-2.fc20 Please consider the package fixing this bug available in Fedora stable repos once bz1116308 is closed and RHEL stable repos once bz1116317 is closed. Fixed in: beakerlib-1.9-2.fc19 beakerlib-1.9-2.fc20 beakerlib-1.9-2.fc21 beakerlib-1.9-3.el5 beakerlib-1.9-2.el6 beakerlib-1.9-2.el7 beakerlib-1.9-3.fc20 has been submitted as an update for Fedora 20. https://admin.fedoraproject.org/updates/beakerlib-1.9-3.fc20 beakerlib-1.9-3.fc20 has been pushed to the Fedora 20 stable repository. If problems still persist, please make note of it in this bug report. |
rlRun uses $i internally, overwriting my global variable $i. Possibly, there are other such cases as well? Reproducer: #!/bin/bash . /usr/bin/rhts-environment.sh || exit 1 . /usr/share/beakerlib/beakerlib.sh || exit 1 rlJournalStart rlPhaseStartTest rlRun "i=5" rlRun "echo $i" rlRun "false" 1-10 rlRun "bash -c 'exit $i'" 5 # this test fails rlPhaseEnd rlJournalPrintText rlJournalEnd Version-Release number of selected component (if applicable): beakerlib-1.8-4.fc20.noarch If there are other such occurrences, I guess it would be good to wrap all of those up as `local's, or something.