mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-15 12:40:35 +00:00
Catch missing exception
This commit is contained in:
parent
559cc00bd7
commit
8a7f145d47
@ -565,6 +565,11 @@ bool run_volk_gnsssdr_tests(volk_gnsssdr_func_desc_t desc,
|
|||||||
std::cerr << " - " << name << std::endl;
|
std::cerr << " - " << name << std::endl;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
catch (std::string s)
|
||||||
|
{
|
||||||
|
std::cerr << "Error: " << s << std::endl;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
//pull the input scalars into their own vector
|
//pull the input scalars into their own vector
|
||||||
std::vector<volk_gnsssdr_type_t> inputsc;
|
std::vector<volk_gnsssdr_type_t> inputsc;
|
||||||
|
Loading…
Reference in New Issue
Block a user