Skip to content

Commit 21280c3

Browse files
roya0045nyalldawson
authored andcommitted
More verbose sip failure
1 parent dca0fb9 commit 21280c3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

tests/code_layout/test_sipfiles_uptodate.sh

+2
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,14 @@ for module in "${modules[@]}"; do
2525
outdiff=$(./scripts/sipify.pl -p python/${module}/auto_additions/${pyfile}.temp $header | diff python/$sipfile.in -)
2626
if [[ -n "$outdiff" ]]; then
2727
echo " *** SIP file not up to date: $sipfile"
28+
echo " $outdiff "
2829
code=1
2930
fi
3031
if [[ -f python/${module}/auto_additions/${pyfile}.temp ]]; then
3132
outdiff2=$(diff python/${module}/auto_additions/${pyfile} python/${module}/auto_additions/${pyfile}.temp)
3233
if [[ -n "$outdiff2" ]]; then
3334
echo " *** Python addition file not up to date: $sipfile"
35+
echo " $outdiff2 "
3436
code=1
3537
fi
3638
fi

tests/src/core/testqgslayertree.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -759,7 +759,6 @@ void TestQgsLayerTree::testSymbolText()
759759
<< QStringLiteral( "bbbb" )
760760
<< QStringLiteral( "cccc" )
761761
<< QStringLiteral( "7" ) );
762-
763762
//cleanup
764763
delete m;
765764
delete root;

0 commit comments

Comments
 (0)