blob: 9c6d513b7f4721ff4f79ca53a3617816e8cc92b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* -*- c++ -*- */
/*
* Copyright 2002,2013,2018 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "vmcircbuf.h"
#include <boost/test/unit_test.hpp>
BOOST_AUTO_TEST_CASE(test_all)
{
int verbose = 1; // summary
BOOST_REQUIRE(gr::vmcircbuf_sysconfig::test_all_factories(verbose));
}
|