Questions tagged [bullseye]

Bullseye is a code coverage analyzer which can be used for testing the coverage for C and C++ codes. Code Coverage testing is useful in unit testing, integration testing and final release to be sure that no part of code went out without testing.

Bullseye is a code coverage analyzer which can be used for testing the coverage for and codes. While testing the code one important parameter is the percentage of coverage. The coverage cheeking needs to be performed to be sure that no part of the code if left to test.

Code coverage analysis is done mostly in unit testing, integration testing phase and before final release. This way the reliability and stability of the code is increased.

The salient features of bullseye coverage analyzer is

  1. Complete coverage analysis of C/C++ codes
  2. Include or exclude any portion of your project code, so exact result for unit testing.
  3. Run-time source code included, for custom environments
  4. Integration with Microsoft Visual Studio
75 questions
8
votes
2 answers

How do you add an exclusion using covselect?

Examples I have been able to find suggest the following for an exclusion: covselect --add \!/usr/src/thing/to/exclude However, when I do this, and list my inclusions, I get: BullseyeCoverage Select Regions 8.8.9 Linux-x64 License 9395 Copyright…
Craig
  • 4,268
  • 4
  • 36
  • 53
7
votes
3 answers

Bullseye vs MS code coverage tool

I need to select code coverage tool between Bullseye and MS code coverage tool. I found some positive feedback for Bullseye, and I can use MS code coverage tool free. The price for Bullseye is not that much ($800/1copy for buying, and…
prosseek
  • 182,215
  • 215
  • 566
  • 871
6
votes
2 answers

Error while trying to open Acrobat Reader in Debian Bullseye

I installed Acrobat reader on Debian 11/Bullseye following instructions from here sudo dpkg --add-architecture i386 sudo apt-get update sudo apt-get install libxml2:i386 Download the Adobe Acrobat Reader (acroread) package…
Mahesh
  • 954
  • 8
  • 18
4
votes
2 answers

pecl install pdo_sqlsrv MAKE fails on DDEV using Debian 11 - missing libltdl.la

I have a project that is using DDEV to run an instance with PHP 8.1. I needed to introduce the pdo_sqlsrv extension to the package, so I added a Dockerfile in the .ddev/web-build/ directory that installs the required packages, and copies a…
user9147574
  • 103
  • 6
3
votes
0 answers

Docker bullseye image and udevadm command failing

I am trying to build a custom docker image using the image python:3.7-slim-bullseye. Inside this image I run the command: RUN udevadm control --reload-rules || echo "done" which produces the error: Failed to send reload request: No such file or…
rider45
  • 83
  • 4
3
votes
2 answers

Broken package installation using Ansible on debian 11 Bullseye

I woud like to install debian packages using Ansible 2.7.7 on Debian testing (yet) I try to execute this simple task: tasks: - name: install basic packages apt: name: ['mc', 'htop', 'strace','sudo','screen','lshw', 'postfix',…
Cybervitexus
  • 291
  • 4
  • 19
3
votes
2 answers

Can't install PHP on bullseye Debian

apt install php7.3 php7.3-common php7.3-cli It returns this error: Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible…
Isabelle
  • 41
  • 1
  • 7
3
votes
1 answer

Bullseye Code Coverage for Qt

Hey I am facing an issue regarding bullseye code coverage with Qt. In my .pro file I am adding the following: QMAKE_CC = "\"C:/Program Files (x86)/BullseyeCoverage/bin/cl\"" QMAKE_CXX = $$QMAKE_CC QMAKE_LINK =…
user3305763
  • 59
  • 10
3
votes
3 answers

Bullseye coverage for embedded systems - not a small footprint data file

I'm fighting for few weeks with Bullseye run for EFI (EDK II) system. I finally linked everything, compiled the code and everything seems to work (I used Bullseye tutorial for embedded system and this topic: Bullseye for EDK Based Application). I…
mlody3k
  • 73
  • 7
3
votes
2 answers

Why are projects compiled with BullsEye compiler?

We have BullsEye Coverage installed on all the TeamCity agents and there's a nightly script which turns on BullsEye, rebuilds my project, runs unit tests and then turns BullsEye off. The BullsEye bin directory is not in the path of the machines and…
Dina
  • 1,346
  • 1
  • 15
  • 35
2
votes
1 answer

Problem with mongodb installation on Raspberry PI 4 (bullseye)

I have tried to install mongodb in a Raspberry PI 4 with Debian GNU/Linux 11 (bullseye) and i have the following error: N: Skipping acquire of configured file 'main/binary-armhf/Packages' as repository 'http://repo.mongodb.org/apt/debian…
husq27
  • 21
  • 2
2
votes
1 answer

Octave 6.2.0 not working on Debian Bullseye 11.3 running on WSL1

As of June 2022, Octave 6.2.0 appears to have a broken dependency: octave /usr/libexec/octave/6.2.0/exec/x86_64-pc-linux-gnu/octave-gui: error while loading shared libraries: libQt5Core.so.5: cannot open shared object file: No such file or…
2
votes
3 answers

RPI.GPIO: ModuleNotFoundError: No module named 'RPi.GPIO

Thank you to all the contributors with their posts correlating to **RPI.GPIO**. I have tried most of your suggestions but so far to no avail. My current version: 0.7.1a4, I'm running bullseye on Pi4 and a python3 programm which should **import the…
Sol
  • 21
  • 1
  • 1
  • 3
2
votes
0 answers

How to take covearge in static inline functions

Why do my inline functions not show coverage even though they are being called and I have turned on the option "Provide code coverage in header files?" Or is there any Bullseye options?
2
votes
3 answers

error LNK2001: unresolved external symbol _cov_probe_v12: cov_probe_12

The solution without bullseye builds fine but when bulleye is enabled it says LNK2001: unresolved external symbol _cov_probe_v12. I have upgraded bullseye to latest 8.11.6 version but still does not help. Please let me know if you have a solution. I…
Pren
  • 21
  • 1
  • 3
1
2 3 4 5