File: test_error_h.c

package info (click to toggle)
libslow5lib 1.3.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,280 kB
  • sloc: ansic: 13,123; python: 1,353; sh: 600; makefile: 98; cpp: 40
file content (17 lines) | stat: -rw-r--r-- 321 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "../src/error.h"

int main(void) {
    ERROR("testing%s","");
    WARNING("testing%s","");
    SUCCESS("testing%s","");
    STDERR("testing%s","");
    INFO("testing%s","");
    DEBUG("testing%s","");

    //MALLOC_CHK(NULL);
    //F_CHK(NULL, __FILE__);
    //NULL_CHK(NULL);
    NEG_CHK(-10);

    return 0;
}