X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Ftesting.h;h=1bcc276c1a8666be6b30113addc572af02689ef5;hb=ce14025ed2ca305737f18a94005f1ec417d325ec;hp=c0a9e88ac09cd6c50f7631d281e5afd98a061670;hpb=6a1a62048b6d0d2ddf5c17295609d3ebf010f40b;p=collectd.git diff --git a/src/testing.h b/src/testing.h index c0a9e88a..1bcc276c 100644 --- a/src/testing.h +++ b/src/testing.h @@ -36,7 +36,7 @@ static int check_count__ = 0; # define DBL_PRECISION 1e-12 #endif -#define DEF_TEST(func) static int test_##func () +#define DEF_TEST(func) static int test_##func (void) #define RUN_TEST(func) do { \ int status; \ @@ -56,12 +56,14 @@ static int check_count__ = 0; #define OK(cond) OK1(cond, #cond) #define EXPECT_EQ_STR(expect, actual) do { \ - if (strcmp (expect, actual) != 0) { \ + /* Evaluate 'actual' only once. */ \ + const char *got__ = actual; \ + if (strcmp (expect, got__) != 0) { \ printf ("not ok %i - %s = \"%s\", want \"%s\"\n", \ - ++check_count__, #actual, actual, expect); \ + ++check_count__, #actual, got__, expect); \ return (-1); \ } \ - printf ("ok %i - %s = \"%s\"\n", ++check_count__, #actual, actual); \ + printf ("ok %i - %s = \"%s\"\n", ++check_count__, #actual, got__); \ } while (0) #define EXPECT_EQ_INT(expect, actual) do { \