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
2
votes
1 answer

Bullseye test coverage plugin for Jenkins

I am doing unit testing of C++ using gtest and using Bullseye coverage for test coverage. I can see all results from Bullseye coverage. But I want to create job on Jenkins and see all chart or graphical result on Jenkins. Is their any plugin or…
rovy
  • 2,481
  • 5
  • 18
  • 26
2
votes
0 answers

Using Bullseye with CMake

I would like to know how to use Bulls eye with CMake. I currently have a library and an corresponding executable (with unittests) being build. There were literally no sources but what I can glean from, I came up with this. FIND_PACKAGE(Bullseye…
Nick
  • 1,692
  • 3
  • 21
  • 35
2
votes
1 answer

how to see line coverage in Bullseye

Recently I started using BullseyeCoverage. I'm going through the steps: compiling with BullseyeCoverage, running some test cases on the binaries created, generating a coverage report. In the coverage report there are: function coverage, and…
Omer Dagan
  • 14,868
  • 16
  • 44
  • 60
1
vote
1 answer

How to use bullseye with Qt( MinGW )?

I have a project in Qt which consists of the set of projects. Projects is building via MinGW and it does not create any .cov file. I installed bullseye and enabled coverage build but it still does not create *.con file if I try to set path variable…
unresolved_external
  • 1,930
  • 5
  • 30
  • 65
1
vote
0 answers

SDL Keyboard Combinations issue

Im writing a program using SDL (libsdl2-dev (version: 2.0.14+dfsg2-3+deb11u1)). I have a keyboard event handler that has been working well for me when I ran into an issue using certain keystroke combinations. After simplifying the code to print just…
dbiber
  • 39
  • 1
  • 4
1
vote
1 answer

Python 3.9.x created CSV with non-English (Unicode) characters (UTF-8 encoded) does not show correctly when opened in Excel (Windows)

My original Python 2.7 code that created the CSV file with non-English characters used the NOT recommended hack of: reload(sys) sys.setdefaultencoding('utf8') In order to achieve "UTF-8" compatibility. (changed from ASCII). In addition , I've added…
Mark.D
  • 51
  • 1
  • 1
  • 6
1
vote
0 answers

mariadb.service: Scheduled restart job, restart counter is at - debian bullseye

I've upgraded my server from stretch to buster and then to bullseye and from this time i have some problems with mariadb server which is restarting often. While is restarting my emails doesnt work cuz of looking for virtual table etc... mariadb…
Kenny
  • 73
  • 8
1
vote
0 answers

Raspberry pi - Raspbian GNU/Linux 11 - Can't install docker

I'm trying to install Docker on my Raspberry Pi: PRETTY_NAME="Raspbian GNU/Linux 11 (bullseye)" NAME="Raspbian GNU/Linux" VERSION_ID="11" VERSION="11…
tech_data
  • 31
  • 3
1
vote
1 answer

Error while trying to upgrade phpmyadmin to 5.1.3

When running apt upgrade I get this upgrade related to phpmyadmin: dpkg-maintscript-helper: error: file '/usr/share/phpmyadmin/js/vendor/codemirror/addon/hint' not owned by package 'phpmyadmin:all' dpkg-maintscript-helper: error: file…
matzr
  • 81
  • 6
1
vote
2 answers

Raspbeery (bullseye) && libcamera

After running libcamera-hello I've always this error (I've Raspbian GNU/Linux 11 (bullseye)) Made X/EGL preview window [0:01:17.403440281] [1320] INFO Camera camera_manager.cpp:293 libcamera v0.0.0 ERROR: *** no cameras available *** What can I…
Imen Trigui
  • 31
  • 1
  • 5
1
vote
0 answers

Can't run systemd in Docker on Debian 11

I've noticed that trying to run any systemd with a centos or debian image on Debian 11 (Bullseye) host, fails with the error: "Failed to get D-Bus connection: No such file or directory" . To replicate try running…
alexT
  • 11
  • 2
1
vote
1 answer

Why the bullseye code coverage doesn't trace a pure virtual function of inherited class?

I met a problem about the Bullseye code coverage. It's a tracing ability of the program. The following code is not traced. class A { public: virtual void func() = 0; }; class B { public: virtual void func() { std::cout << "Am…
Kyokook Hwang
  • 2,682
  • 21
  • 36
1
vote
1 answer

Bingo game Java

I'm trying to write a java code with(bingo game),(bullseye game) the rules are simple: computer picks 4 numbers user input 4 numbers must check the user input is between 1 to 10 If the user input exists in the computer randomized numbers it will…
Tal Ouzan
  • 75
  • 1
  • 5
1
vote
1 answer

Code coverage test with BullsEye

I am using Bullseye for code coverage test with some C code. I successfully instrumented my c code with Bullseye. Then I tried to disassemble it to see what's in there. I was expecting that there should be some probe function inserted at every…
smwikipedia
  • 61,609
  • 92
  • 309
  • 482
1
vote
1 answer

How to add Bullseye code coverage to code compiled with gcc

How to add Bullseye code coverage to code compiled with gcc? See my answer below.
Michael Stahl
  • 208
  • 3
  • 9