Add tests/t1000-rcxml-simple-parse.c

This commit is contained in:
Johan Malm 2020-06-08 21:10:45 +01:00
parent 91ce33dd0d
commit 40c0b169ef
5 changed files with 142 additions and 0 deletions

17
tests/tap.h Normal file
View file

@ -0,0 +1,17 @@
/*
* Minimalist, partial TAP implementation
*
* Copyright Johan Malm 2020
*/
#ifndef TAP_H
#define TAP_H
#define ok1(__x__) (ok(__x__, "%s", #__x__))
void plan(int nr_tests);
void diag(const char *fmt, ...);
int ok(int result, const char *test_name, ...);
int exit_status(void);
#endif /* TAP_H */