How to Install and Uninstall libcmocka.i686 Package on Fedora 35

Last updated: September 23,2024

1. Install "libcmocka.i686" package

Please follow the steps below to install libcmocka.i686 on Fedora 35

$ sudo dnf update $ sudo dnf install libcmocka.i686

2. Uninstall "libcmocka.i686" package

This tutorial shows how to uninstall libcmocka.i686 on Fedora 35:

$ sudo dnf remove libcmocka.i686 $ sudo dnf autoremove

3. Information about the libcmocka.i686 package on Fedora 35

Last metadata expiration check: 0:56:43 ago on Wed Sep 7 08:25:01 2022.
Available Packages
Name : libcmocka
Version : 1.1.5
Release : 10.fc35
Architecture : i686
Size : 38 k
Source : cmocka-1.1.5-10.fc35.src.rpm
Repository : fedora
Summary : Lightweight library to simplify and generalize unit tests for C
URL : https://cmocka.org
License : ASL 2.0
Description : There are a variety of C unit testing frameworks available however many of them
: are fairly complex and require the latest compiler technology. Some development
: requires the use of old compilers which makes it difficult to use some unit
: testing frameworks. In addition many unit testing frameworks assume the code
: being tested is an application or module that is targeted to the same platform
: that will ultimately execute the test. Because of this assumption many
: frameworks require the inclusion of standard C library headers in the code
: module being tested which may collide with the custom or incomplete
: implementation of the C library utilized by the code under test.
:
: CMocka only requires a test application is linked with the standard C library
: which minimizes conflicts with standard C library headers. Also, CMocka tries
: to avoid the use of some of the newer features of C compilers.
:
: This results in CMocka being a relatively small library that can be used to
: test a variety of exotic code. If a developer wishes to simply test an
: application with the latest compiler then other unit testing frameworks may be
: preferable.
:
: This is the successor of Google's Cmockery.