Builder osrf-master-fedora-18 Build #43
Results:
Build successful
SourceStamp:
Project | OpenSRF |
Repository | git://git.evergreen-ils.org/OpenSRF.git |
Branch | master |
Revision | 33a5e60ee8f4c539d5bf3dc1d1ff1b62d5715d65 |
Got Revision | 33a5e60ee8f4c539d5bf3dc1d1ff1b62d5715d65 |
Changes | 5 changes |
BuildSlave:
opensrf-fed18Reason:
scheduler
Steps and Logfiles:
-
git update ( 1 secs )
-
Bootstrap via autogen './autogen.sh' skipped ( 0 secs )
- - no logs -
-
Bootstrap via autoreconf 'autoreconf -i' ( 11 secs )
-
configure configure ( 14 secs )
-
compile compile warnings ( 54 secs )
-
test test 129 tests 129 passed ( 10 secs )
-
trial 14 tests passed ( 3 secs )
-
pylint pylint failed ( 16 secs )
Build Properties:
Name | Value | Source |
---|---|---|
branch | master | Build |
buildername | osrf-master-fedora-18 | Builder |
buildnumber | 43 | Build |
codebase | Build | |
got_revision | 33a5e60ee8f4c539d5bf3dc1d1ff1b62d5715d65 | Git |
project | OpenSRF | Build |
pylint-convention | 0 | Unknown |
pylint-error | 0 | Unknown |
pylint-fatal | 0 | Unknown |
pylint-info | 0 | Unknown |
pylint-refactor | 0 | Unknown |
pylint-total | 0 | Unknown |
pylint-warning | 0 | Unknown |
repository | git://git.evergreen-ils.org/OpenSRF.git | Build |
revision | 33a5e60ee8f4c539d5bf3dc1d1ff1b62d5715d65 | Build |
scheduler | osrf-master-full | Scheduler |
slavename | opensrf-fed18 | BuildSlave |
warnings-count | 6 | WarningCountingShellCommand |
workdir | /home/openslave/opensrf-slave/osrf-master-fedora-18 | slave |
Forced Build Properties:
Name | Label | Value |
---|
Responsible Users:
- Dan Scottdscott@laurentian.ca
- Galen Charltongmc@esilibrary.com
- Mike Rylandermrylander@gmail.com
Timing:
Start | Thu Jul 23 15:32:52 2015 |
End | Thu Jul 23 15:34:45 2015 |
Elapsed | 1 mins, 52 secs |
All Changes:
:
Change #2213
Category None Changed by Mike Rylander <mrylander @gmail.com>Changed at Wed 03 Jun 2015 13:33:34 Repository git://git.evergreen-ils.org/OpenSRF.git Project OpenSRF Branch master Revision d9cbdfd1deb13932720ddffc7f01e976e8efaeda Comments
LP#1436047: Allow disabling of "bang commands" in srfsh srfsh has the ability to execute commands via system() calls using the common "!command" syntax. This is very useful, but it would be nice to be able to turn that functionality off in some cases. This branch adds argument parsing to detect a new '--safe' command line parameter, which disables the "!command" syntax. Signed-off-by: Mike Rylander <mrylander@gmail.com> Signed-off-by: Galen Charlton <gmc@esilibrary.com>
Changed files
- src/srfsh/srfsh.c
Change #2214
Category None Changed by Galen Charlton <gmc @esilibrary.com>Changed at Wed 03 Jun 2015 13:34:02 Repository git://git.evergreen-ils.org/OpenSRF.git Project OpenSRF Branch master Revision 42f14c919d82abbf5927775b933ff8c5d4070d2e Comments
LP#1436047: make srfsh --safe act as if "! command" doesn't exist This patch make srfsh treat attempting to run an external command via "! command" as a parsing error if --safe is supplied. It also suppress mention of "! commands" from the internal help. Signed-off-by: Galen Charlton <gmc@esilibrary.com> Signed-off-by: Mike Rylander <mrylander@gmail.com>
Changed files
- src/srfsh/srfsh.c
Change #2266
Category None Changed by Dan Scott <dscott @laurentian.ca>Changed at Thu 18 Jun 2015 13:21:26 Repository git://git.evergreen-ils.org/OpenSRF.git Project OpenSRF Branch master Revision cc1f6ee9349584f7ec7b6f16861805a43f7161d6 Comments
LP#1409055 Support specific protocols for OpenSRF gateway requests If the user passes in a gateway hostname that contains a specific HTTP or HTTPS protocol, let's just use that. Signed-off-by: Dan Scott <dscott@laurentian.ca> Signed-off-by: Bill Erickson <berickxx@gmail.com>
Changed files
- src/python/osrf/gateway.py
Change #2269
Category None Changed by Galen Charlton <gmc @esilibrary.com>Changed at Wed 24 Jun 2015 09:44:04 Repository git://git.evergreen-ils.org/OpenSRF.git Project OpenSRF Branch master Revision 6f1daba1493011a8b01cd80d29a68976c24c7010 Comments
LP#1461625: ensure srfsh doesn't close STDOUT prematurely Ensure that when running srfsh in non-interactive mode that reads commands directly from a file, (i.e., "srfsh script.srfsh" or as a shebang script), it does not close STDOUT after handling the first request. To test ------- [1] Create a srfsh script containing: request opensrf.math opensrf.system.echo "foo" request opensrf.math opensrf.system.echo "bar" [2] Run "srfsh script.srfsh". Note that only the results of the first echo request are output. [3] Apply the patch and recompile, then run "srfsh script.srfsh" again. This time, the output of both requests is displayed. Signed-off-by: Galen Charlton <gmc@esilibrary.com> Signed-off-by: Mike Rylander <mrylander@gmail.com>
Changed files
- src/srfsh/srfsh.c
Change #2270
Category None Changed by Galen Charlton <gmc @esilibrary.com>Changed at Wed 24 Jun 2015 09:45:46 Repository git://git.evergreen-ils.org/OpenSRF.git Project OpenSRF Branch master Revision 33a5e60ee8f4c539d5bf3dc1d1ff1b62d5715d65 Comments
LP#1152272: do not log batch invocation of srfsh in .srfsh_history When running srfsh to process a script, do not log the requests in .srfsh_history. To test ------- [1] Run the following command: echo 'request opensrf.math opensrf.system.echo "foo"' | srfsh [2] Note that the last line of ~/.srfsh_history should be 'request opensrf.math opensrf.system.echo "foo"' [3] Apply the patch, compile, and run echo 'request opensrf.math opensrf.system.echo "bar"' | srfsh [4] This time, no additional line should have been added to ~/.srfsh_history [5] Another variation to try: srfsh test.srfsh Signed-off-by: Galen Charlton <gmc@esilibrary.com> Signed-off-by: Mike Rylander <mrylander@gmail.com>
Changed files
- src/srfsh/srfsh.c