X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libtest%2Ftest.h;h=117e59ceaca767965fa88bb602116d92c366d24d;hb=5e18f5bdda1bebc6e6eef25a37d0a04a30e847af;hp=b5f7e47d3cad9ddd7c37d68d3c51ac3778457a29;hpb=b9ab4871d4437735aa727797bda5eb7ae1d7f133;p=m6w6%2Flibmemcached diff --git a/libtest/test.h b/libtest/test.h index b5f7e47d..117e59ce 100644 --- a/libtest/test.h +++ b/libtest/test.h @@ -230,16 +230,10 @@ do \ } while (0) -#define test_strcmp(A,B) \ +#define test_strcmp(__expected, __actual) \ do \ { \ - if ((A) == NULL or (B) == NULL or strcmp((A), (B))) \ - { \ - if ((B) == NULL) fprintf(stderr, "\n%s:%d: Expected %s, got \n", __FILE__, __LINE__, (A)); \ - else fprintf(stderr, "\n%s:%d: Expected %s, got \"%s\"\n", __FILE__, __LINE__, (A), (B)); \ - libtest::create_core(); \ - return TEST_FAILURE; \ - } \ + void(libtest::_compare_strcmp(__FILE__, __LINE__, __func__, (__expected), (__actual))); \ } while (0) #define test_memcmp(A,B,C) \