X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Ftesting.h;h=805449f7b933dad837f42b56137b613263e00fb8;hb=08a2128ac248150b50f9c54c9c71f573e54df3c3;hp=5df1b83a3e0f076b3a35bff53df09b021b9a0ea5;hpb=0003c4d3c184f0f437499d6073cd023dc7b659c2;p=collectd.git diff --git a/src/testing.h b/src/testing.h index 5df1b83a..805449f7 100644 --- a/src/testing.h +++ b/src/testing.h @@ -1,6 +1,6 @@ /** * collectd - src/tests/macros.h - * Copyright (C) 2013 Florian octo Forster + * Copyright (C) 2013-2015 Florian octo Forster * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -42,6 +42,7 @@ static int check_count__ = 0; #define OK1(cond, text) do { \ _Bool result = (cond); \ printf ("%s %i - %s\n", result ? "ok" : "not ok", ++check_count__, text); \ + if (!result) { return -1; } \ } while (0) #define OK(cond) OK1(cond, #cond) @@ -54,6 +55,29 @@ static int check_count__ = 0; printf ("ok %i - %s evaluates to \"%s\"\n", ++check_count__, #actual, expect); \ } while (0) +#define EXPECT_INTEQ(expect, actual) do { \ + if ((expect) != (actual)) {\ + printf ("not ok %i - %s incorrect: expected %d, got %d\n", \ + ++check_count__, #actual, expect, actual); \ + return (-1); \ + } \ + printf ("ok %i - %s evaluates to %d\n", ++check_count__, #actual, expect); \ +} while (0) + +#define DBLEQ(expect, actual) do { \ + double e = (expect); double a = (actual); \ + if (isnan (e) && !isnan (a)) { \ + printf ("not ok %i - %s incorrect: expected %.15g, got %.15g\n", \ + ++check_count__, #actual, e, a); \ + return (-1); \ + } else if (!isnan (e) && (((e-a) < -1e-12) || ((e-a) > 1e-12))) { \ + printf ("not ok %i - %s incorrect: expected %.15g, got %.15g\n", \ + ++check_count__, #actual, e, a); \ + return (-1); \ + } \ + printf ("ok %i - %s evaluates to %.15g\n", ++check_count__, #actual, e); \ +} while (0) + #define CHECK_NOT_NULL(expr) do { \ void *ptr_; \ ptr_ = (expr); \