4
0

tap.h 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*-
  2. * Copyright (c) 2004 Nik Clayton
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. *
  14. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  15. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  16. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  17. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  18. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  19. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  20. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  21. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  22. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  23. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  24. * SUCH DAMAGE.
  25. */
  26. /* '## __VA_ARGS__' is a gcc'ism. C99 doesn't allow the token pasting
  27. and requires the caller to add the final comma if they've omitted
  28. the optional arguments */
  29. #ifdef __GNUC__
  30. # define ok(e, test, ...) ((e) ? \
  31. _gen_result(1, __func__, __FILE__, __LINE__, \
  32. test, ## __VA_ARGS__) : \
  33. _gen_result(0, __func__, __FILE__, __LINE__, \
  34. test, ## __VA_ARGS__))
  35. # define ok1(e) ((e) ? \
  36. _gen_result(1, __func__, __FILE__, __LINE__, "%s", #e) : \
  37. _gen_result(0, __func__, __FILE__, __LINE__, "%s", #e))
  38. # define pass(test, ...) ok(1, test, ## __VA_ARGS__);
  39. # define fail(test, ...) ok(0, test, ## __VA_ARGS__);
  40. # define skip_start(test, n, fmt, ...) \
  41. do { \
  42. if((test)) { \
  43. skip(n, fmt, ## __VA_ARGS__); \
  44. continue; \
  45. }
  46. #else /* __GNUC__ */
  47. /* The original tap.h used to test if __STDC_VERSION__ >= 199901L here. This
  48. * doesn't seem to work on HP-UX even though the code compile fine. I'm not
  49. * sure how to add an exception here for HP-UX so I just removed the check
  50. * for now */
  51. # define ok(e, ...) ((e) ? \
  52. _gen_result(1, __func__, __FILE__, __LINE__, \
  53. __VA_ARGS__) : \
  54. _gen_result(0, __func__, __FILE__, __LINE__, \
  55. __VA_ARGS__))
  56. # define ok1(e) ((e) ? \
  57. _gen_result(1, __func__, __FILE__, __LINE__, "%s", #e) : \
  58. _gen_result(0, __func__, __FILE__, __LINE__, "%s", #e))
  59. # define pass(...) ok(1, __VA_ARGS__);
  60. # define fail(...) ok(0, __VA_ARGS__);
  61. # define skip_start(test, n, ...) \
  62. do { \
  63. if((test)) { \
  64. skip(n, __VA_ARGS__); \
  65. continue; \
  66. }
  67. #endif /* __GNUC__ */
  68. # define skip_end } while(0);
  69. unsigned int _gen_result(int, const char *, char *, unsigned int, char *, ...);
  70. int plan_no_plan(void);
  71. int plan_skip_all(char *);
  72. int plan_tests(unsigned int);
  73. unsigned int diag(char *, ...);
  74. int skip(unsigned int, char *, ...);
  75. void todo_start(char *, ...);
  76. void todo_end(void);
  77. int exit_status(void);