Merge remote-tracking branch 'origin/fastpath'

* origin/fastpath:
  Improve readability of the Travis job log
This commit is contained in:
Jon Siwek 2018-08-23 15:18:48 -05:00
commit b9dfca7789
4 changed files with 23 additions and 4 deletions

13
CHANGES
View file

@ -1,4 +1,17 @@
2.5-900 | 2018-08-23 15:18:48 -0500
* Improve readability of the Travis job log (Daniel Thayer)
* Fix tracking of DCE-RPC context identifier mappings
This adds previously-missing support for "Alter Context"
request/response PDUs (initial patch contributed by Mark Fernandez).
Also, context ID arguments were added to dce_rpc_bind, dce_rpc_request,
and dce_rpc_response in order to properly track what endpoint/operation
a given opnum maps to. (Jon Siwek, Corelight)
2.5-897 | 2018-08-23 15:53:16 +0000 2.5-897 | 2018-08-23 15:53:16 +0000
* BIT-1885: Fix input framework memory leak. For input threads that * BIT-1885: Fix input framework memory leak. For input threads that

View file

@ -1 +1 @@
2.5-897 2.5-900

View file

@ -1 +1 @@
ec454469578db00176db08a60363e99cdf1867f3 1917c0c602b18aa52150c7a940e9038a4382aa44

View file

@ -199,15 +199,21 @@ run() {
fi fi
if [ -d bro-testing ]; then if [ -d bro-testing ]; then
( cd bro-testing && git checkout `cat ../commit-hash.bro-testing` ) commit=`cat commit-hash.bro-testing`
echo "Checking out $commit"
( cd bro-testing && git checkout -q $commit )
fi fi
echo
if [ ! -d bro-testing-private ]; then if [ ! -d bro-testing-private ]; then
get_private_tests get_private_tests
fi fi
if [ -d bro-testing-private ]; then if [ -d bro-testing-private ]; then
( cd bro-testing-private && git checkout `cat ../commit-hash.bro-testing-private` ) commit=`cat commit-hash.bro-testing-private`
echo "Checking out $commit"
( cd bro-testing-private && git checkout -q $commit )
fi fi
echo echo