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

Azure IoT edge device hosting node-red module stopped working: error no space on device

I installed Azure IoT edge runtime on a Raspberry Pi 3 (Debian bullseye) to run my edge models. Everything worked well until I had an error: A module runtime error occurred caused by: A module runtime error occurred caused by:…
0
votes
0 answers

Raspberry Pi OMX Player 'layer' function not working on Bullseye install

I have recently updated an old (Pre Bullseye) Raspberry Pi video based project environment from P3b, Python 2.7, Buster to Pi4, Python 3.9, Bullseye. All went well and I am now running as expected on the new platform with one 'deal breaker'…
LKGUK
  • 1
  • 2
0
votes
1 answer

Script variables not interpreted by sed in cronjob

Bash script in Debian 11 Bullseye making use of "sed" runs ok from command line but not as a cron Hi, I'm running Debian GNU/Linux 11 (bullseye) Linux 5.15.84-v8+ #1613 SMP PREEMPT Thu Jan 5 12:03:08 GMT 2023 aarch64 GNU/Linux In my setting, I have…
Mike
  • 5
  • 2
0
votes
1 answer

Can't import rospy in Debian 11 bullseye. Although pakage is installed it shows no module named rospy

I installed rospy package from Pip3 and it worked fine on my Windows, Similarly i tried it with bullseye Debian 11 (on my raspberry pi3b+), it downloaded successfully but it wont import rospy and shows the error no module named rospy. My code is…
lari
  • 21
  • 2
0
votes
0 answers

We are trying to use ov7251 camera in raspberry pi bullseye system but facing issues in opening camera

Facing issues in integrating camera in raspberry pi (ov7251) Steps we have followed sudo raspi-config Turn on the i2c interface legacy camera is disabled reboot config.txt change gpu_mem = 128 libcamera-hello libEGL warning: DRI2: failed to…
0
votes
0 answers

Avalonia: Is there a way embed Process' Window on Linux

Hello as you know the VLCPlayer not supporting RTSP stream on debian bullseye and pardus21 anymore. I'm searching a way put native window to Control on Linux for Avalonia. On windows it's so easy. [DllImport("user32.dll", SetLastError =…
Fatih
  • 945
  • 15
  • 26
0
votes
0 answers

libEGL warning: DRI!: ailed to authenticate

ibcamera-still libEGL warning: DRI2: failed to authenticate Made X/EGL preview window [0:07:27.483694161] [1545] INFO Camera camera_manager.cpp:293 libcamera v0.0.0+3866-0c55e522 [0:07:27.582976454] [1559] INFO RPI raspberrypi.cpp:1374 Registered…
lari
  • 21
  • 2
0
votes
0 answers

Is there a way to compare 2 coverage reports from bullsEye Coverage

I have 2 set of tests and have run then on a code base with bullseye enabled. Have got the merged coverage reports of all tests of set1 and set2. Now is there a way to compare these 2 coverage reports to check what are the unique coverpoints being…
0
votes
0 answers

How to close(withdraw) tk_popup menu?

How to close(withdraw) 'tk_popup' menu (context menu) without explicitly invoking the menu item (choice)? I tried the following: class CtxMenuMixin: def layout(self, popup=None): self.popup = popup self.popup.bind('',…
0
votes
0 answers

Error : Azure IoT Edge configuration on Raspberry Pi - Bullseye

I have followed the Microsoft documentation (Create and provision an IoT Edge device on Linux using symmetric keys) Getting following error as an output of : sudo iotedge check --verbose × configuration has correct URIs for daemon mgmt endpoint -…
0
votes
1 answer

How to install a bookworm package from a bullseye docker image

I'm currently building images from python:3.9-slim-bullseye. I also need the latest version of libleptonica-dev which is only available for bookworm and sid. Currently, if I run apt-get install -y libleptonica-dev in my Dockerfile, it's installing…
RobinFrcd
  • 4,439
  • 4
  • 25
  • 49
0
votes
1 answer

Exclude folder from Bullseye code coverage

I want to remove some folders from my .cov file after coverage. My script that run coverage is not in the same folder as src. I have followed couple of already existing stack answer but they seem not to work. I have already tried covselect --file…
roffensive
  • 564
  • 4
  • 22
0
votes
1 answer

Unable to run `apt-get` commands in Dockerfile "executor failed running"

Working on OSX, zsh within iTerm2. I have a .sh script to build a Docker container. It was originally being built using openjdk Alpine but I transitioned to Bullseye such that it works with M1 chips on Mac. I'm now running into an issue where these…
mathwiz97
  • 67
  • 2
  • 11
0
votes
0 answers

linking with log4cpp fails with Raspian Bullseye

I have an issue recompiling my code on a newly installed raspi. /usr/bin/g++ -c -Wall -g -O2 -fdebug-prefix-map=/build/log4cpp-E4MvbD/log4cpp-1.1.3=. -fstack-protector-strong -Wformat -Werror=format-security -MD -MP -MF .dep/DataBlock.o.d…
dl2sba
  • 1
0
votes
1 answer

Debian package of Python Application not working on Raspbian Bullseye

I built a debian package of my Python 3 Application using dh-virtualenv. On Raspbian Buster everything works fine but with the recent release of Bullseye I want the package to be compatible. Sadly when I install the .deb under Bullseye, all my…