#include "../include/libsigrok/libsigrok.h"
#include "lib.h"
-struct sr_context *sr_ctx;
-
-static void setup(void)
-{
- int ret;
-
- ret = sr_init(&sr_ctx);
- fail_unless(ret == SR_OK, "sr_init() failed: %d.", ret);
-}
-
-static void teardown(void)
-{
- int ret;
-
- ret = sr_exit(sr_ctx);
- fail_unless(ret == SR_OK, "sr_exit() failed: %d.", ret);
-}
-
/* Check whether at least one driver is available. */
START_TEST(test_driver_available)
{
/* Check whether initializing all drivers works. */
START_TEST(test_driver_init_all)
{
- srtest_driver_init_all(sr_ctx);
+ srtest_driver_init_all(srtest_ctx);
}
END_TEST
s = suite_create("driver-all");
tc = tcase_create("config");
- tcase_add_checked_fixture(tc, setup, teardown);
+ tcase_add_checked_fixture(tc, srtest_setup, srtest_teardown);
tcase_add_test(tc, test_driver_available);
tcase_add_test(tc, test_driver_init_all);
// TODO: Currently broken.
#define CHECK_ALL_HIGH 1
#define CHECK_HELLO_WORLD 2
-static struct sr_context *sr_ctx;
-
static uint64_t df_packet_counter = 0, sample_counter = 0;
static gboolean have_seen_df_end = FALSE;
static GArray *logic_channellist = NULL;
static uint64_t expected_samples;
static uint64_t *expected_samplerate;
-static void setup(void)
-{
- int ret;
-
- ret = sr_init(&sr_ctx);
- fail_unless(ret == SR_OK, "sr_init() failed: %d.", ret);
-}
-
-static void teardown(void)
-{
- int ret;
-
- ret = sr_exit(sr_ctx);
- fail_unless(ret == SR_OK, "sr_exit() failed: %d.", ret);
-}
-
static void check_all_low(const struct sr_datafeed_logic *logic)
{
uint64_t i;
s = suite_create("input-binary");
tc = tcase_create("basic");
- tcase_add_checked_fixture(tc, setup, teardown);
+ tcase_add_checked_fixture(tc, srtest_setup, srtest_teardown);
tcase_add_test(tc, test_input_binary_all_low);
tcase_add_test(tc, test_input_binary_all_high);
tcase_add_loop_test(tc, test_input_binary_all_high_loop, 0, 10);
#include "../include/libsigrok/libsigrok.h"
#include "lib.h"
-static struct sr_context *sr_ctx;
-
-static void setup(void)
-{
- int ret;
-
- ret = sr_init(&sr_ctx);
- fail_unless(ret == SR_OK, "sr_init() failed: %d.", ret);
-}
-
-static void teardown(void)
-{
- int ret;
-
- ret = sr_exit(sr_ctx);
- fail_unless(ret == SR_OK, "sr_exit() failed: %d.", ret);
-}
-
/*
* Check whether sr_session_new() works.
* If it returns != SR_OK (or segfaults) this test will fail.
s = suite_create("session");
tc = tcase_create("new_destroy");
- tcase_add_checked_fixture(tc, setup, teardown);
+ tcase_add_checked_fixture(tc, srtest_setup, srtest_teardown);
tcase_add_test(tc, test_session_new);
tcase_add_test(tc, test_session_new_bogus);
tcase_add_test(tc, test_session_new_multiple);
#include "../include/libsigrok/libsigrok.h"
#include "lib.h"
-struct sr_context *sr_ctx;
-
-static void setup(void)
-{
- int ret;
-
- ret = sr_init(&sr_ctx);
- fail_unless(ret == SR_OK, "sr_init() failed: %d.", ret);
-}
-
-static void teardown(void)
-{
- int ret;
-
- ret = sr_exit(sr_ctx);
- fail_unless(ret == SR_OK, "sr_exit() failed: %d.", ret);
-}
-
static void test_samplerate(uint64_t samplerate, const char *expected)
{
char *s;
s = suite_create("strutil");
tc = tcase_create("sr_samplerate_string");
- tcase_add_checked_fixture(tc, setup, teardown);
+ tcase_add_checked_fixture(tc, srtest_setup, srtest_teardown);
tcase_add_test(tc, test_hz);
tcase_add_test(tc, test_khz);
tcase_add_test(tc, test_mhz);
#include "../include/libsigrok/libsigrok.h"
#include "lib.h"
+struct sr_context *srtest_ctx;
+
+void srtest_setup(void)
+{
+ int ret;
+
+ ret = sr_init(&srtest_ctx);
+ fail_unless(ret == SR_OK, "sr_init() failed: %d.", ret);
+}
+
+void srtest_teardown(void)
+{
+ int ret;
+
+ ret = sr_exit(srtest_ctx);
+ fail_unless(ret == SR_OK, "sr_exit() failed: %d.", ret);
+}
+
/* Get a libsigrok driver by name. */
struct sr_dev_driver *srtest_driver_get(const char *drivername)
{
#include "../include/libsigrok/libsigrok.h"
+extern struct sr_context *srtest_ctx;
+
+void srtest_setup(void);
+void srtest_teardown(void);
+
struct sr_dev_driver *srtest_driver_get(const char *drivername);
struct sr_input_format *srtest_input_get(const char *id);