tap.h 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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 ommitted
  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 /*#elif __STDC_VERSION__ >= 199901L*/ /* __GNUC__ */
  47. # define ok(e, ...) ((e) ? \
  48. _gen_result(1, __func__, __FILE__, __LINE__, \
  49. __VA_ARGS__) : \
  50. _gen_result(0, __func__, __FILE__, __LINE__, \
  51. __VA_ARGS__))
  52. # define ok1(e) ((e) ? \
  53. _gen_result(1, __func__, __FILE__, __LINE__, "%s", #e) : \
  54. _gen_result(0, __func__, __FILE__, __LINE__, "%s", #e))
  55. # define pass(...) ok(1, __VA_ARGS__);
  56. # define fail(...) ok(0, __VA_ARGS__);
  57. # define skip_start(test, n, ...) \
  58. do { \
  59. if((test)) { \
  60. skip(n, __VA_ARGS__); \
  61. continue; \
  62. }
  63. /*#else *//* __STDC_VERSION__ */
  64. /*# error "Needs gcc or C99 compiler for variadic macros."*/
  65. #endif /* __STDC_VERSION__ */
  66. # define skip_end } while(0);
  67. unsigned int _gen_result(int, const char *, char *, unsigned int, char *, ...);
  68. int plan_no_plan(void);
  69. int plan_skip_all(char *);
  70. int plan_tests(unsigned int);
  71. unsigned int diag(char *, ...);
  72. int skip(unsigned int, char *, ...);
  73. void todo_start(char *, ...);
  74. void todo_end(void);
  75. int exit_status(void);