2011-01-14 18:09:26 +00:00
|
|
|
//
|
|
|
|
|
// Copyright 2011 Ettus Research LLC
|
2018-02-19 23:30:32 +00:00
|
|
|
// Copyright 2018 Ettus Research, a National Instruments Company
|
2011-01-14 18:09:26 +00:00
|
|
|
//
|
2018-02-19 23:30:32 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
2011-01-14 18:09:26 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#include <uhd/utils/static.hpp>
|
|
|
|
|
#include <stdexcept>
|
|
|
|
|
#include <iostream>
|
|
|
|
|
_uhd_static_fixture::_uhd_static_fixture(void (*fcn)(void), const char *name){
|
|
|
|
|
try{
|
|
|
|
|
fcn();
|
|
|
|
|
}
|
|
|
|
|
catch(const std::exception &e){
|
|
|
|
|
std::cerr << "Exception in static block " << name << std::endl;
|
|
|
|
|
std::cerr << " " << e.what() << std::endl;
|
|
|
|
|
}
|
|
|
|
|
catch(...){
|
|
|
|
|
std::cerr << "Exception in static block " << name << std::endl;
|
|
|
|
|
}
|
|
|
|
|
}
|