• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

nasa / trick / 29960541623

22 Jul 2026 09:47PM UTC coverage: 56.24% (+0.1%) from 56.126%
29960541623

Pull #2154

github

web-flow
Merge 6292c712d into 886b8b6c6
Pull Request #2154: Add data recording support for STL (vector, deque, and array) of supported data types.

120 of 145 new or added lines in 5 files covered. (82.76%)

64 existing lines in 8 files now uncovered.

14731 of 26193 relevant lines covered (56.24%)

478940.19 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

85.71
/trick_source/sim_services/VariableServer/VariableServer_init.cpp
1

2
#include "trick/VariableServer.hh"
3
#include "trick/exec_proto.hh"
4

5
int Trick::VariableServer::init() {
156✔
6
    /* Start up the listen thread for the input processor variable server.
7
       The thread is started whenever the variable server is enabled OR broadcasting
8
       is on (broadcast defaults on). This lets a sim announce itself on the multicast
9
       broadcast channel (for tools like sim-sniffer) even while the variable server is
10
       disabled. Connection servicing remains gated by get_allow_connections() inside
11
       the listen thread, so a disabled sim broadcasts but will not accept connections. */
12
    if (enabled || listen_thread.get_broadcast())
156✔
13
    {
14
        int ret = listen_thread.check_and_move_listen_device() ;
156✔
15
        if ( ret != 0 ) {
156✔
UNCOV
16
            return ret ;
×
17
        }
18
        listen_thread.create_thread() ;
156✔
19
    }
20

21
    return(0) ;
156✔
22
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc