mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-29 21:42:32 +02:00
univalue: Bump subtree
This commit is contained in:
commit
fad349c507
@ -25,7 +25,6 @@ addons:
|
|||||||
- pkg-config
|
- pkg-config
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew uninstall libtool; brew install libtool; fi
|
|
||||||
- if [ -n "$USE_SHELL" ]; then export CONFIG_SHELL="$USE_SHELL"; fi
|
- if [ -n "$USE_SHELL" ]; then export CONFIG_SHELL="$USE_SHELL"; fi
|
||||||
- test -n "$USE_SHELL" && eval '"$USE_SHELL" -c "./autogen.sh"' || ./autogen.sh
|
- test -n "$USE_SHELL" && eval '"$USE_SHELL" -c "./autogen.sh"' || ./autogen.sh
|
||||||
|
|
||||||
|
@ -19,9 +19,10 @@
|
|||||||
#define BOOST_CHECK_THROW(stmt, excMatch) { \
|
#define BOOST_CHECK_THROW(stmt, excMatch) { \
|
||||||
try { \
|
try { \
|
||||||
(stmt); \
|
(stmt); \
|
||||||
|
assert(0 && "No exception caught"); \
|
||||||
} catch (excMatch & e) { \
|
} catch (excMatch & e) { \
|
||||||
} catch (...) { \
|
} catch (...) { \
|
||||||
assert(0); \
|
assert(0 && "Wrong exception caught"); \
|
||||||
} \
|
} \
|
||||||
}
|
}
|
||||||
#define BOOST_CHECK_NO_THROW(stmt) { \
|
#define BOOST_CHECK_NO_THROW(stmt) { \
|
||||||
|
Loading…
Reference in New Issue
Block a user