Skip to content

Commit

Permalink
More verbose sip failure
Browse files Browse the repository at this point in the history
  • Loading branch information
roya0045 authored and nyalldawson committed Apr 17, 2019
1 parent dca0fb9 commit 21280c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 2 additions & 0 deletions tests/code_layout/test_sipfiles_uptodate.sh
Expand Up @@ -25,12 +25,14 @@ for module in "${modules[@]}"; do
outdiff=$(./scripts/sipify.pl -p python/${module}/auto_additions/${pyfile}.temp $header | diff python/$sipfile.in -)
if [[ -n "$outdiff" ]]; then
echo " *** SIP file not up to date: $sipfile"
echo " $outdiff "
code=1
fi
if [[ -f python/${module}/auto_additions/${pyfile}.temp ]]; then
outdiff2=$(diff python/${module}/auto_additions/${pyfile} python/${module}/auto_additions/${pyfile}.temp)
if [[ -n "$outdiff2" ]]; then
echo " *** Python addition file not up to date: $sipfile"
echo " $outdiff2 "
code=1
fi
fi
Expand Down
1 change: 0 additions & 1 deletion tests/src/core/testqgslayertree.cpp
Expand Up @@ -759,7 +759,6 @@ void TestQgsLayerTree::testSymbolText()
<< QStringLiteral( "bbbb" )
<< QStringLiteral( "cccc" )
<< QStringLiteral( "7" ) );

//cleanup
delete m;
delete root;
Expand Down

0 comments on commit 21280c3

Please sign in to comment.