mirror of
https://github.com/labwc/labwc.git
synced 2025-11-02 09:01:47 -05:00
Add tests/t1000-rcxml-simple-parse.c
This commit is contained in:
parent
91ce33dd0d
commit
40c0b169ef
5 changed files with 142 additions and 0 deletions
17
tests/tap.h
Normal file
17
tests/tap.h
Normal 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 */
|
||||
Loading…
Add table
Add a link
Reference in a new issue