File tree 4 files changed +7
-7
lines changed
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -222,8 +222,8 @@ void AddressBookTests::addressBookTests()
222
222
// framework when it tries to look up unimplemented cocoa functions,
223
223
// and fails to handle returned nulls
224
224
// (https://bugreports.qt.io/browse/QTBUG-49686).
225
- QWARN ( " Skipping AddressBookTests on mac build with 'minimal' platform set due to Qt bugs. To run AppTests, invoke "
226
- " with 'QT_QPA_PLATFORM=cocoa test_bitcoin-qt' on mac, or else use a linux or windows build." ) ;
225
+ qWarning () << " Skipping AddressBookTests on mac build with 'minimal' platform set due to Qt bugs. To run AppTests, invoke "
226
+ " with 'QT_QPA_PLATFORM=cocoa test_bitcoin-qt' on mac, or else use a linux or windows build." ;
227
227
return ;
228
228
}
229
229
#endif
Original file line number Diff line number Diff line change @@ -60,8 +60,8 @@ void AppTests::appTests()
60
60
// framework when it tries to look up unimplemented cocoa functions,
61
61
// and fails to handle returned nulls
62
62
// (https://bugreports.qt.io/browse/QTBUG-49686).
63
- QWARN ( " Skipping AppTests on mac build with 'minimal' platform set due to Qt bugs. To run AppTests, invoke "
64
- " with 'QT_QPA_PLATFORM=cocoa test_bitcoin-qt' on mac, or else use a linux or windows build." ) ;
63
+ qWarning () << " Skipping AppTests on mac build with 'minimal' platform set due to Qt bugs. To run AppTests, invoke "
64
+ " with 'QT_QPA_PLATFORM=cocoa test_bitcoin-qt' on mac, or else use a linux or windows build." ;
65
65
return ;
66
66
}
67
67
#endif
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ int main(int argc, char* argv[])
58
58
gArgs .ForceSetArg (" -natpmp" , " 0" );
59
59
60
60
std::string error;
61
- if (!gArgs .ReadConfigFiles (error, true )) QWARN ( error.c_str () );
61
+ if (!gArgs .ReadConfigFiles (error, true )) qWarning () << error.c_str ();
62
62
63
63
// Prefer the "minimal" platform for the test instead of the normal default
64
64
// platform ("xcb", "windows", or "cocoa") so tests can't unintentionally
Original file line number Diff line number Diff line change @@ -475,8 +475,8 @@ void WalletTests::walletTests()
475
475
// framework when it tries to look up unimplemented cocoa functions,
476
476
// and fails to handle returned nulls
477
477
// (https://bugreports.qt.io/browse/QTBUG-49686).
478
- QWARN ( " Skipping WalletTests on mac build with 'minimal' platform set due to Qt bugs. To run AppTests, invoke "
479
- " with 'QT_QPA_PLATFORM=cocoa test_bitcoin-qt' on mac, or else use a linux or windows build." ) ;
478
+ qWarning () << " Skipping WalletTests on mac build with 'minimal' platform set due to Qt bugs. To run AppTests, invoke "
479
+ " with 'QT_QPA_PLATFORM=cocoa test_bitcoin-qt' on mac, or else use a linux or windows build." ;
480
480
return ;
481
481
}
482
482
#endif
You can’t perform that action at this time.
0 commit comments