2012-01-23 00:52:05 +00:00
|
|
|
/*!
|
2014-06-17 17:13:24 +00:00
|
|
|
* \file test_main.cc
|
|
|
|
* \brief This file implements all system tests.
|
|
|
|
* \author Carles Fernandez-Prades, 2012. cfernandez(at)cttc.es
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*
|
2015-01-08 18:49:59 +00:00
|
|
|
* Copyright (C) 2010-2015 (see AUTHORS file for a list of contributors)
|
2014-06-17 17:13:24 +00:00
|
|
|
*
|
|
|
|
* GNSS-SDR is a software defined Global Navigation
|
|
|
|
* Satellite Systems receiver
|
|
|
|
*
|
|
|
|
* This file is part of GNSS-SDR.
|
|
|
|
*
|
|
|
|
* GNSS-SDR is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
2015-01-08 18:49:59 +00:00
|
|
|
* (at your option) any later version.
|
2014-06-17 17:13:24 +00:00
|
|
|
*
|
|
|
|
* GNSS-SDR is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with GNSS-SDR. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*/
|
2012-01-23 00:52:05 +00:00
|
|
|
|
2015-05-01 07:28:45 +00:00
|
|
|
#include <cmath>
|
2011-10-01 18:45:20 +00:00
|
|
|
#include <iostream>
|
2012-01-23 00:52:05 +00:00
|
|
|
#include <queue>
|
2014-04-03 21:59:14 +00:00
|
|
|
#include <memory>
|
2015-01-09 12:47:52 +00:00
|
|
|
#include <boost/thread.hpp>
|
2016-04-25 13:38:31 +00:00
|
|
|
#include <boost/make_shared.hpp>
|
2015-01-09 12:47:52 +00:00
|
|
|
#include <boost/filesystem.hpp>
|
2014-03-23 10:47:19 +00:00
|
|
|
#include <gflags/gflags.h>
|
2015-01-09 12:47:52 +00:00
|
|
|
#include <glog/logging.h>
|
2013-07-04 13:47:40 +00:00
|
|
|
#include <gnuradio/msg_queue.h>
|
2015-01-09 12:47:52 +00:00
|
|
|
#include <gtest/gtest.h>
|
2012-01-23 00:52:05 +00:00
|
|
|
#include "concurrent_queue.h"
|
2013-03-15 18:05:37 +00:00
|
|
|
#include "concurrent_map.h"
|
2014-03-23 09:45:03 +00:00
|
|
|
#include "control_thread.h"
|
2012-01-23 00:52:05 +00:00
|
|
|
#include "gps_navigation_message.h"
|
|
|
|
|
2013-07-15 17:07:10 +00:00
|
|
|
#include "gps_ephemeris.h"
|
2015-06-05 16:46:00 +00:00
|
|
|
#include "gps_cnav_ephemeris.h"
|
2013-07-15 17:07:10 +00:00
|
|
|
#include "gps_almanac.h"
|
|
|
|
#include "gps_iono.h"
|
2015-06-05 16:46:00 +00:00
|
|
|
#include "gps_cnav_iono.h"
|
2013-07-15 17:07:10 +00:00
|
|
|
#include "gps_utc_model.h"
|
|
|
|
|
|
|
|
#include "galileo_ephemeris.h"
|
|
|
|
#include "galileo_almanac.h"
|
|
|
|
#include "galileo_iono.h"
|
|
|
|
#include "galileo_utc_model.h"
|
|
|
|
|
2013-11-09 23:11:46 +00:00
|
|
|
#include "sbas_ephemeris.h"
|
|
|
|
#include "sbas_telemetry_data.h"
|
|
|
|
#include "sbas_ionospheric_correction.h"
|
|
|
|
#include "sbas_satellite_correction.h"
|
|
|
|
#include "sbas_time.h"
|
|
|
|
|
2012-01-23 00:52:05 +00:00
|
|
|
|
2014-03-23 09:45:03 +00:00
|
|
|
|
|
|
|
using google::LogMessage;
|
|
|
|
|
|
|
|
DECLARE_string(log_dir);
|
|
|
|
|
2014-03-28 17:52:51 +00:00
|
|
|
#include "arithmetic/complex_carrier_test.cc"
|
|
|
|
#include "arithmetic/conjugate_test.cc"
|
|
|
|
#include "arithmetic/magnitude_squared_test.cc"
|
|
|
|
#include "arithmetic/multiply_test.cc"
|
2015-05-03 08:50:57 +00:00
|
|
|
#include "arithmetic/code_generation_test.cc"
|
2015-12-02 17:25:06 +00:00
|
|
|
#include "arithmetic/tracking_loop_filter_test.cc"
|
2016-05-26 17:30:14 +00:00
|
|
|
#include "arithmetic/fft_length_test.cc"
|
2013-02-17 09:54:41 +00:00
|
|
|
#include "configuration/file_configuration_test.cc"
|
|
|
|
#include "configuration/in_memory_configuration_test.cc"
|
2012-01-25 03:16:08 +00:00
|
|
|
#include "control_thread/control_message_factory_test.cc"
|
2014-12-21 21:46:57 +00:00
|
|
|
#include "control_thread/control_thread_test.cc"
|
2012-01-25 03:16:08 +00:00
|
|
|
#include "flowgraph/pass_through_test.cc"
|
2014-12-21 21:46:57 +00:00
|
|
|
#include "flowgraph/gnss_flowgraph_test.cc"
|
2015-11-22 13:43:52 +00:00
|
|
|
#include "formats/string_converter_test.cc"
|
|
|
|
#include "formats/rtcm_test.cc"
|
2014-04-03 21:59:14 +00:00
|
|
|
#include "gnss_block/gnss_block_factory_test.cc"
|
2014-03-23 09:45:03 +00:00
|
|
|
#include "gnss_block/rtcm_printer_test.cc"
|
2012-06-22 14:17:28 +00:00
|
|
|
#include "gnss_block/file_signal_source_test.cc"
|
2012-02-24 16:06:14 +00:00
|
|
|
#include "gnss_block/fir_filter_test.cc"
|
2016-04-25 13:20:42 +00:00
|
|
|
#include "gnss_block/gps_l1_ca_pcps_acquisition_test.cc"
|
2016-04-25 13:31:30 +00:00
|
|
|
#include "gnss_block/gps_l2_m_pcps_acquisition_test.cc"
|
2016-04-29 16:45:30 +00:00
|
|
|
#include "gnss_block/gps_l1_ca_pcps_acquisition_gsoc2013_test.cc"
|
2013-11-09 23:11:46 +00:00
|
|
|
//#include "gnss_block/gps_l1_ca_pcps_multithread_acquisition_gsoc2013_test.cc"
|
2016-04-30 09:33:52 +00:00
|
|
|
#if OPENCL_BLOCKS_TEST
|
|
|
|
#include "gnss_block/gps_l1_ca_pcps_opencl_acquisition_gsoc2013_test.cc"
|
|
|
|
#endif
|
2016-04-29 16:45:30 +00:00
|
|
|
#include "gnss_block/gps_l1_ca_pcps_quicksync_acquisition_gsoc2014_test.cc"
|
|
|
|
#include "gnss_block/gps_l1_ca_pcps_tong_acquisition_gsoc2013_test.cc"
|
2016-04-25 13:53:01 +00:00
|
|
|
#include "gnss_block/galileo_e1_pcps_ambiguous_acquisition_test.cc"
|
2016-04-29 16:45:30 +00:00
|
|
|
#include "gnss_block/galileo_e1_pcps_ambiguous_acquisition_gsoc_test.cc"
|
2016-04-25 18:42:43 +00:00
|
|
|
#include "gnss_block/galileo_e1_pcps_ambiguous_acquisition_gsoc2013_test.cc"
|
2016-04-29 16:45:30 +00:00
|
|
|
#include "gnss_block/galileo_e1_pcps_8ms_ambiguous_acquisition_gsoc2013_test.cc"
|
|
|
|
#include "gnss_block/galileo_e1_pcps_tong_ambiguous_acquisition_gsoc2013_test.cc"
|
|
|
|
#include "gnss_block/galileo_e1_pcps_cccwsr_ambiguous_acquisition_gsoc2013_test.cc"
|
|
|
|
#include "gnss_block/galileo_e1_pcps_quicksync_ambiguous_acquisition_gsoc2014_test.cc"
|
2013-02-17 09:54:41 +00:00
|
|
|
#include "gnss_block/galileo_e1_dll_pll_veml_tracking_test.cc"
|
2014-04-03 21:59:14 +00:00
|
|
|
#include "gnuradio_block/gnss_sdr_valve_test.cc"
|
|
|
|
#include "gnuradio_block/direct_resampler_conditioner_cc_test.cc"
|
2016-04-29 16:45:30 +00:00
|
|
|
#include "gnss_block/galileo_e5a_pcps_acquisition_gsoc2014_gensource_test.cc"
|
2014-06-20 16:23:44 +00:00
|
|
|
#include "gnss_block/galileo_e5a_tracking_test.cc"
|
2015-04-30 15:48:21 +00:00
|
|
|
#include "gnss_block/gps_l2_m_dll_pll_tracking_test.cc"
|
2014-06-17 17:13:24 +00:00
|
|
|
|
|
|
|
|
2015-06-05 16:46:00 +00:00
|
|
|
// For GPS NAVIGATION (L1)
|
2016-04-12 15:29:16 +00:00
|
|
|
|
2013-04-02 14:02:55 +00:00
|
|
|
concurrent_queue<Gps_Acq_Assist> global_gps_acq_assist_queue;
|
|
|
|
concurrent_map<Gps_Acq_Assist> global_gps_acq_assist_map;
|
2012-01-23 00:52:05 +00:00
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2014-03-23 09:45:03 +00:00
|
|
|
std::cout << "Running GNSS-SDR Tests..." << std::endl;
|
2015-06-12 15:58:50 +00:00
|
|
|
int res = 0;
|
|
|
|
testing::InitGoogleTest(&argc, argv);
|
|
|
|
google::ParseCommandLineFlags(&argc, &argv, true);
|
|
|
|
google::InitGoogleLogging(argv[0]);
|
2015-05-15 01:02:45 +00:00
|
|
|
try
|
|
|
|
{
|
2015-06-12 15:58:50 +00:00
|
|
|
res = RUN_ALL_TESTS();
|
2015-05-15 01:02:45 +00:00
|
|
|
}
|
2015-05-22 16:36:12 +00:00
|
|
|
catch(...)
|
2015-05-15 01:02:45 +00:00
|
|
|
{
|
2015-05-22 16:37:24 +00:00
|
|
|
LOG(WARNING) << "Unexpected catch";
|
2015-05-15 01:02:45 +00:00
|
|
|
}
|
2015-05-22 16:36:12 +00:00
|
|
|
google::ShutDownCommandLineFlags();
|
2015-06-12 15:58:50 +00:00
|
|
|
return res;
|
2012-01-23 00:52:05 +00:00
|
|
|
}
|