lib1301.c 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  9. *
  10. * This software is licensed as described in the file COPYING, which
  11. * you should have received as part of this distribution. The terms
  12. * are also available at https://curl.se/docs/copyright.html.
  13. *
  14. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. * copies of the Software, and permit persons to whom the Software is
  16. * furnished to do so, under the terms of the COPYING file.
  17. *
  18. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. * KIND, either express or implied.
  20. *
  21. * SPDX-License-Identifier: curl
  22. *
  23. ***************************************************************************/
  24. #include "test.h"
  25. #define fail_unless(expr, msg) \
  26. do { \
  27. if(!(expr)) { \
  28. fprintf(stderr, "%s:%d Assertion '%s' failed: %s\n", \
  29. __FILE__, __LINE__, #expr, msg); \
  30. return 1; \
  31. } \
  32. } while(0)
  33. int test(char *URL)
  34. {
  35. int rc;
  36. (void)URL;
  37. rc = curl_strequal("iii", "III");
  38. fail_unless(rc != 0, "return code should be non-zero");
  39. rc = curl_strequal("iiia", "III");
  40. fail_unless(rc == 0, "return code should be zero");
  41. rc = curl_strequal("iii", "IIIa");
  42. fail_unless(rc == 0, "return code should be zero");
  43. rc = curl_strequal("iiiA", "IIIa");
  44. fail_unless(rc != 0, "return code should be non-zero");
  45. rc = curl_strnequal("iii", "III", 3);
  46. fail_unless(rc != 0, "return code should be non-zero");
  47. rc = curl_strnequal("iiiABC", "IIIcba", 3);
  48. fail_unless(rc != 0, "return code should be non-zero");
  49. rc = curl_strnequal("ii", "II", 3);
  50. fail_unless(rc != 0, "return code should be non-zero");
  51. return 0;
  52. }