dll-export hasher when building unit tests. improve linker output parsing in test script

This commit is contained in:
Arvid Norberg 2013-06-19 16:42:10 +00:00
parent 0263d730b6
commit 61d1d7ea0e
2 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ namespace libtorrent
namespace libtorrent
{
class hasher
class TORRENT_EXTRA_EXPORT hasher
{
public:

View File

@ -51,7 +51,7 @@ def style_output(o):
ret += '<span class="test-pass">%s</span>\n' % l
elif ': error: ' in l or ': fatal error: ' in l or ' : fatal error ' in l or \
'failed to write output file' in l or ') : error C' in l or \
') : error LNK' in l:
') : error LNK' in l or ': undefined reference to ' in l:
ret += '<span class="compile-error">%s</span>\n' % l
elif ': warning: ' in l or ') : warning C' in l:
ret += '<span class="compile-warning">%s</span>\n' % l