summaryrefslogtreecommitdiff
path: root/unittest/examples/todo-t.c
blob: 82601bee41c07bc1446063404d3616262df9f665 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

#include "my_config.h"

#include <stdlib.h>
#include <tap.h>

int main()
{
  plan(4);
  ok(1, NULL);
  ok(1, NULL);
  /*
    Tests in the todo region is expected to fail. If they don't,
    something is strange.
  */
  todo_start("Need to fix these");
  ok(0, NULL);
  ok(0, NULL);
  todo_end();
  return exit_status();
}