mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 08:10:26 +08:00
Add prefix to test verification in guality.h
2017-04-26 Martin Liska <mliska@suse.cz> * gcc.dg/guality/guality.h: Add prefix to test verification. From-SVN: r247275
This commit is contained in:
parent
9f06c15a2e
commit
f9726baa97
@ -1,3 +1,7 @@
|
||||
2017-04-26 Martin Liska <mliska@suse.cz>
|
||||
|
||||
* gcc.dg/guality/guality.h: Add prefix to test verification.
|
||||
|
||||
2017-04-25 Nathan Sidwell <nathan@acm.org>
|
||||
|
||||
* g++.dg/dg.exp (find-cxx-tests): Remove TCL 8.5-ism.
|
||||
|
@ -55,6 +55,8 @@ along with GCC; see the file COPYING3. If not see
|
||||
so that __FILE__ and __LINE__ will be usable to identify them.
|
||||
*/
|
||||
|
||||
#define GUALITY_TEST "guality/guality.h"
|
||||
|
||||
/* This is the type we use to pass values to guality_check. */
|
||||
|
||||
typedef intmax_t gualchk_t;
|
||||
@ -274,7 +276,7 @@ continue\n\
|
||||
|
||||
i = guality_count[INCORRECT];
|
||||
|
||||
fprintf (stderr, "%s: %i PASS, %i FAIL, %i UNRESOLVED\n",
|
||||
fprintf (stderr, "%s: " GUALITY_TEST ": %i PASS, %i FAIL, %i UNRESOLVED\n",
|
||||
i ? "FAIL" : "PASS",
|
||||
guality_count[PASS], guality_count[INCORRECT],
|
||||
guality_count[INCOMPLETE]);
|
||||
@ -361,13 +363,13 @@ continue\n\
|
||||
switch (result)
|
||||
{
|
||||
case PASS:
|
||||
fprintf (stderr, "PASS: %s is %lli\n", name, value);
|
||||
fprintf (stderr, "PASS: " GUALITY_TEST ": %s is %lli\n", name, value);
|
||||
break;
|
||||
case INCORRECT:
|
||||
fprintf (stderr, "FAIL: %s is %lli, not %lli\n", name, xvalue, value);
|
||||
fprintf (stderr, "FAIL: " GUALITY_TEST ": %s is %lli, not %lli\n", name, xvalue, value);
|
||||
break;
|
||||
case INCOMPLETE:
|
||||
fprintf (stderr, "%s: %s is %s, expected %lli\n",
|
||||
fprintf (stderr, "%s: " GUALITY_TEST ": %s is %s, expected %lli\n",
|
||||
unknown_ok ? "UNRESOLVED" : "FAIL", name,
|
||||
unavailable < 0 ? "not computable" : "optimized away", value);
|
||||
result = unknown_ok ? INCOMPLETE : INCORRECT;
|
||||
|
Loading…
x
Reference in New Issue
Block a user