PRIx macros: add some actual testing

Not just a compile-time one (that the macros compile and don't
raise warnings).

Change-Id: I5642bf242a6c26a33730708f3c1710237fc107a2
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
Giuseppe D'Angelo 2021-05-17 12:50:49 +02:00
parent 8f7873272a
commit 8b8ff64be2

View File

@ -674,27 +674,27 @@ void tst_QGlobal::PRImacros()
// none of these calls must generate a -Wformat warning
{
quintptr p = 123u;
(void)QString::asprintf("The value %" PRIuQUINTPTR " is nice", p);
(void)QString::asprintf("The value %" PRIoQUINTPTR " is nice", p);
(void)QString::asprintf("The value %" PRIxQUINTPTR " is nice", p);
(void)QString::asprintf("The value %" PRIXQUINTPTR " is nice", p);
QCOMPARE(QString::asprintf("The value %" PRIuQUINTPTR " is nice", p), "The value 123 is nice");
QCOMPARE(QString::asprintf("The value %" PRIoQUINTPTR " is nice", p), "The value 173 is nice");
QCOMPARE(QString::asprintf("The value %" PRIxQUINTPTR " is nice", p), "The value 7b is nice");
QCOMPARE(QString::asprintf("The value %" PRIXQUINTPTR " is nice", p), "The value 7B is nice");
}
{
qintptr p = 123;
(void)QString::asprintf("The value %" PRIdQINTPTR " is nice", p);
(void)QString::asprintf("The value %" PRIiQINTPTR " is nice", p);
QCOMPARE(QString::asprintf("The value %" PRIdQINTPTR " is nice", p), "The value 123 is nice");
QCOMPARE(QString::asprintf("The value %" PRIiQINTPTR " is nice", p), "The value 123 is nice");
}
{
qptrdiff d = 123;
(void)QString::asprintf("The value %" PRIdQPTRDIFF " is nice", d);
(void)QString::asprintf("The value %" PRIiQPTRDIFF " is nice", d);
QCOMPARE(QString::asprintf("The value %" PRIdQPTRDIFF " is nice", d), "The value 123 is nice");
QCOMPARE(QString::asprintf("The value %" PRIiQPTRDIFF " is nice", d), "The value 123 is nice");
}
{
qsizetype s = 123;
(void)QString::asprintf("The value %" PRIdQSIZETYPE " is nice", s);
(void)QString::asprintf("The value %" PRIiQSIZETYPE " is nice", s);
QCOMPARE(QString::asprintf("The value %" PRIdQSIZETYPE " is nice", s), "The value 123 is nice");
QCOMPARE(QString::asprintf("The value %" PRIiQSIZETYPE " is nice", s), "The value 123 is nice");
}
}