Changeset 32da451 for tests/src


Ignore:
Timestamp:
Jan 8, 2017, 3:18:20 PM (7 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, sampler, yinfft+
Children:
fead41a
Parents:
ed66e34
Message:

tests/src/utils/test-log.c: add AUBIO_INF

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/src/utils/test-log.c

    red66e34 r32da451  
    2626  fprintf(stdout, "### testing normal logging\n");
    2727  AUBIO_ERR("testing normal AUBIO_LOG_ERR\n");
     28  AUBIO_INF("testing normal AUBIO_LOG_INF\n");
    2829  AUBIO_WRN("testing normal AUBIO_LOG_WRN\n");
    2930  AUBIO_MSG("testing normal AUBIO_LOG_MSG\n");
     
    3334  aubio_log_set_function(logging, (void *)hdr);
    3435  AUBIO_ERR("testing recustom AUBIO_LOG_ERR\n");
     36  AUBIO_INF("testing recustom AUBIO_LOG_INF\n");
    3537  AUBIO_WRN("testing recustom AUBIO_LOG_WRN\n");
    3638  AUBIO_MSG("testing recustom AUBIO_LOG_MSG\n");
     
    4042  aubio_log_reset();
    4143  AUBIO_ERR("testing uncustom AUBIO_LOG_ERR\n");
     44  AUBIO_INF("testing uncustom AUBIO_LOG_INF\n");
    4245  AUBIO_WRN("testing uncustom AUBIO_LOG_WRN\n");
    4346  AUBIO_MSG("testing uncustom AUBIO_LOG_MSG\n");
     
    4952  aubio_log_set_level_function(AUBIO_LOG_MSG, logging, (void *)hdr);
    5053  AUBIO_ERR("testing custom AUBIO_LOG_ERR\n");
     54  AUBIO_INF("testing custom AUBIO_LOG_INF\n");
    5155  AUBIO_WRN("testing custom AUBIO_LOG_WRN with data=NULL\n");
    5256  AUBIO_MSG("testing custom AUBIO_LOG_MSG\n");
Note: See TracChangeset for help on using the changeset viewer.