Expand driver test framework a little and the tests we do.

This commit is contained in:
R. Bernstein
2012-03-25 01:47:26 -04:00
parent 0b5e5d6465
commit 924e021fb9
3 changed files with 97 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
/* -*- C -*-
Copyright (C) 2010 Rocky Bernstein <rocky@gnu.org>
Copyright (C) 2010, 2012 Rocky Bernstein <rocky@gnu.org>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -14,8 +14,23 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <cdio/cdio.h>
void check_access_mode(CdIo_t *p_cdio, const char *psz_expected_access_mode);
void check_get_arg_source(CdIo_t *p_cdio, const char *psz_expected_source);
void check_mmc_supported(CdIo_t *p_cdio, int i_expected);
#include <cdio/logging.h>
void log_handler(cdio_log_level_t level, const char message[]);
extern unsigned int info_msg_count;
extern unsigned int debug_msg_count;
extern unsigned int warn_msg_count;
extern const char *info_messages[6];
extern const char *debug_messages[6];
extern const char *warn_messages[6];
extern void assert_equal_int(int expect, int got, const char *msg);
extern void reset_counts(void);
extern void assert_warn(const char *msg);
extern void assert_no_warn(const char *msg);