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

nasa / trick / 8457600858

27 Mar 2024 07:32PM UTC coverage: 55.855% (-0.06%) from 55.91%
8457600858

push

github

web-flow
Bump express from 4.18.2 to 4.19.2 in /trick_source/web/dashboard (#1678)

Bumps [express](https://github.com/expressjs/express) from 4.18.2 to 4.19.2.
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](https://github.com/expressjs/express/compare/4.18.2...4.19.2)

---
updated-dependencies:
- dependency-name: express
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

12253 of 21937 relevant lines covered (55.86%)

84774.22 hits per line

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

87.5
/trick_source/sim_services/MemoryManager/MemoryManager_is_alloced.cpp
1
#include "trick/MemoryManager.hh"
2

3
int Trick::MemoryManager::is_alloced(void *addr) {
370✔
4

5
    ALLOC_INFO *info;
6

7
    pthread_mutex_lock(&mm_mutex);
370✔
8
    if ( (info = get_alloc_info_at( addr)) != NULL) {
370✔
9
        pthread_mutex_unlock(&mm_mutex);
×
10
        return (1);
×
11
    }
12
    pthread_mutex_unlock(&mm_mutex);
370✔
13
    return (0);
370✔
14
}
15

16
// MEMBER FUNCTION:
17
int Trick::MemoryManager::var_exists( std::string var_name) {
1,161✔
18
    VARIABLE_MAP::iterator variable_pos;
1,161✔
19

20
    pthread_mutex_lock(&mm_mutex);
1,161✔
21
    variable_pos = variable_map.find( var_name);
1,161✔
22

23
    if (variable_pos != variable_map.end()) {
1,161✔
24
        pthread_mutex_unlock(&mm_mutex);
527✔
25
        return (1);
527✔
26
    }
27
    pthread_mutex_unlock(&mm_mutex);
634✔
28
    return (0);
634✔
29
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc