aboutsummaryrefslogtreecommitdiffstats
path: root/host/tests/module_test.cpp
blob: 220cfc56949d9911705338afc64f2ea88a02c0c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
// Copyright 2010-2011 Ettus Research LLC
//
// SPDX-License-Identifier: GPL-3.0
//

#include <uhd/utils/static.hpp>
#include <iostream>

UHD_STATIC_BLOCK(module_test){
    std::cout << "---------------------------------------" << std::endl;
    std::cout << "-- Good news, everyone!" << std::endl;
    std::cout << "-- The test module has been loaded." << std::endl;
    std::cout << "---------------------------------------" << std::endl;
}