Tagged Questions
0
votes
3answers
92 views
testing Embedded C
I am using CCS, Inc. PCWHD Version 4
I am asked to compile and run C files on CCSC compiler, but the problem is unlike GCC and turbo it is not giving ".exe" (application file) on compilation. I am ...
7
votes
3answers
128 views
How to test static functions with cppunit
My project contains c files.
In some files I have functions defined as static.
I m using cppunit in my unit tests. and I want to tests these static functions. I know that calling function from ...
2
votes
1answer
85 views
Does cppUnit use fork() when it launch each unit test?
I'm using cppunit for the unit tests of my project.
And I m wondering if the cppunit launch each unit test in a new fork() system call because:
Using fork will allow to create a new address space ...
5
votes
1answer
93 views
How to unit test a C function with a FILE* argument
I have a C function uint8_t command_read(const FILE* const in) that reads from in. I would like to write a unit test for the function. Is it possible to create a FILE* in memory for the test since I ...
1
vote
1answer
68 views
Using GoogleTest with Bullseye to generate Test Report
I am trying to use GoogleTest and bullseye for testing a C application code. I am in RHEL environment using i686 type processor. I got the gtest and bullseye libraries. Process for writing stubs and ...
0
votes
0answers
60 views
C Unit Test Framework that compare arrays
I'm looking for a C Unit Test Framework that has a native function (or macro) to compare arrays. I already took a look in cut, check, CUnit, CuTest and MinUnit but can't find it.
Since I will use it ...
-1
votes
1answer
46 views
Explain mock() in context to cmocka unit testing framework
I am learning cmocka unit testing framework. I am a bit puzzled at use of mock() function. Can somebody explain it clearly why and how it is used with suitable examples? Also please explain when it ...
0
votes
1answer
158 views
Limitations of using a C unit testing framework for testing embedded C++ code
I would like to try using a unit testing framework for testing the code that I write in C, C++ or sometimes IEC languages too.
So my question is - is there some big limitation using C-written unit ...
1
vote
2answers
84 views
Error while loading shared libraries: libcmocka.so.0: No such file or directory
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>
/* A test case that does nothing and succeeds. */
static void null_test_success(void **state) {
...
1
vote
3answers
96 views
Is it possible to exchange a C function implementation at run time?
I have implemented a facade pattern that uses C functions underneath and I would like to test it properly.
I do not really have control over these C functions. They are implemented in a header. Right ...
0
votes
0answers
57 views
How to use a typedef from (legacy) C source file in a unit test source file?
I have a legacy C source file which defines an enum.
//source.c
typedef enum
{
ENUM_0,
ENUM_1,
ENUM_2
} my_enum;
How can I use this enum inside my unit test's source code?
I can think ...
0
votes
0answers
48 views
Failing CUnit tests with custom message
Is there a way to let CUnit test cases fail with a dynamic custom error message? CUnit offers the CU_FAIL and CU_FAIL_FATAL macros, however these do not seem to support char* parameters.
For example:
...
1
vote
3answers
132 views
A first step to write (a practice) Unit Test [closed]
I am developing an Win32 application in C with Visual Studio 2010. It is a very small project so far, only 1273 lines of code in only 1 .cpp file which has 20 functions.
I want to learn and practice ...
0
votes
1answer
87 views
How to test legacy C code and check which branches where hit
I have a DLL which contains many large (1000+ line) functions. This code has lots of complex logic which I want to ensure doesn't get broken when its maintained so I created a test harness which ...
2
votes
2answers
116 views
C++ Unit Testing and stubbing a 3rd party C library
I need to unit test some C++ objects that Ive written that use a 3rd party C library. For reasons beyond the scope of this question, I cant call the 3rd party C library directly, and need to stub it ...
3
votes
2answers
149 views
How to unit test c functions involving IO?
I am facing problems in writing unit tests to C functions which involve IO operation. For example, below is the code I wrote to get an input string from the user from console. I do not know as to how ...
0
votes
0answers
67 views
Testable C application using posix threads
I have to write code that would look do something like that (of course much more complicated):
int stop;
int isStopped;
void workerFunction(){
while(!stop){
//...
}
isStopeed = ...
0
votes
1answer
114 views
Unit testing procedural C code [closed]
I just went through this video on unit testing. It gives good pointers on unit testing object oriented code. Are there any good documents / books / tips to write a unit testable procedural C code ?
0
votes
2answers
202 views
creating unit testing using makefile
gcc 4.7.2
c89
Hello,
I am wondering does any one know of any tutorials or text books that cover using makefile to create some simple unit testing for my c programs.
I would like to run some ...
0
votes
2answers
503 views
Building CUnit on Windows
Has anyone managed to build the CUnit library for Windows?
I want to run the same unit tests under Windows that I have currently developed under linux, so I need a windows version of the cunit shared ...
2
votes
1answer
198 views
Eclipse Add-on for unit testing in C
I know there is a Eclipse add-on for junit testing available. That bring up a question, is there also a tool for C unit testing available?
1
vote
0answers
314 views
Eclipse C Unit Testing with Check undefined reference error
I'm extremely new to C and I'm having the following problem: I made a very small program filecopy.c, and I want to make a unit test for it with Check, but when I make the unit test and build it I get ...
0
votes
3answers
72 views
How to send a lot of variables to a generic function?
I have a function f, defined as following:
struct s {
void *data;
struct s *next;
};
void
f(struct s **p, void *q)
{
/* ... */
}
void *
g(struct s **p)
{
/* ... */
}
I have to ...
6
votes
1answer
173 views
Comprehensive open-source test suite for the C Standard Library
I'm looking for a testsuite for the C Standard Library (mainly for the algorithms not contacting the "outer world", so strcpy(), memcmp(), itoa() & likes).
I tried downloading the GCC sources, ...
2
votes
2answers
89 views
Instance Level Abstractions in C
I am not a C expert. I haven't done any C since my CS1 & 2 days in college. I have done a little C++ here and there but it's been a while. So what I'm asking about is the correct pattern to solve ...
2
votes
1answer
287 views
How do I run unit tests using the GLib framework?
I'm trying to run simple unit tests for some C code I'm writing using GLib. I'm trying to do something like:
#include <math.h>
#include <stdio.h>
#include <glib.h>
static void
...
1
vote
0answers
468 views
MC/DC coverage tools for C/C++
I have recently took the CS258 free online course, and it mentioned a code coverage called the MC/DC coverage, which is used in embedded software, such as computers on cars, planes, etc...
but I ...
0
votes
2answers
120 views
Test unit in C for server listening function. Avoid listen blocking call
I am writing a test unit for function named pkg_getclient ().
It is, basically, a function that listens indefinetly for a client.
Here is the implementation : http://slexy.org/view/s21RBuOUOu ...
0
votes
1answer
144 views
Undefined reference to wrapped function with -Wl,--wrap
I am running RHEL 6.2 using GCC 4.4.6-3. I am unit testing some legacy code and am trying to wrap functions with with -Wl,--wrap=function. Where function might be system calls like close, or malloc, ...
2
votes
1answer
61 views
Have compiler declare and locate debug pointer variable
Say I have a two functions like the ones below:
unsigned char PlusTwo(unsigned char value)
{
return (value + 2);
}
unsigned char PlusTwoUsingPtr(unsigned char *value)
{
return (*value + 2);
}
...
1
vote
1answer
111 views
unit-test zsh extendedglob functionality
How can I, in a c program, perform a glob by using the function provided by the z shell?
I have created a README of my explorations so far. It is for use in an open source library.
...
2
votes
2answers
134 views
How to cause sqlite3_initialize to fail
I have the following C code that uses sqlite3:
if(SQLITE_OK == sqlite3_initialize()) {
self->db_open_result = sqlite3_open(self->db_uri, &(self->db));
} else {
...
0
votes
0answers
44 views
CU_basic_run_tests stops processing the method CUnit
Guys i'm a some time with problems with CUnit, but i think that this is the last one!
"
Looks, my main method in my C test class runs a method called "CU_basic_run_tests();" and after this my C code ...
3
votes
4answers
278 views
CUnit failures in hudson show success
i put unit tests in C running over hudson, but when i have a test that failures it shows a success in the build, but must to appear fail!
I'm using gcc to compile and run the executable in hudson ...
2
votes
2answers
353 views
Importing CUnit sources
i'm having a problem to use Unit test in C, i've tried to install CUnit in my computer and after include the lib.
i've followed steeps to install the CUnit:
1 - download the sources
2 - configure it ...
2
votes
1answer
273 views
cUnit tests running on hudson
i'm looking for some plugin in hudson that runs unit tests, i get two names post build task, and CMake build, but by description anyone was created to run unit tests, them i want some indication about ...
5
votes
1answer
319 views
Unit test framework for Vala
I am thinking of developing an application using Vala. I would like to write unit tests for my code - but I have not (as yet) found any actively maintained unit test frameworks for Vala (e.g. ...
2
votes
2answers
229 views
regression test for command line program in C/C++
I have a linux utility that parses structured input ( a text file ), processes it and prints the result to the screen. For example: (input)
COMMAND=create
NAME=Stack
SURNAME=Overflow
My ...
1
vote
4answers
138 views
How can I build Unittests with check?
I want to test my C code and decide to using check as testing Framework.
But I don't understand how to compile the code?
In the tutorial they have already very huge makefiles, but they do not explain ...
7
votes
2answers
165 views
What strategies exist for ensuring all locale-aware operations are handled correctly in all locales?
Somewhat out of necessity, I develop software with my locale set to either "C" or "en_US". It's difficult to use a different locale because I only speak one language with anything even remotely ...
8
votes
1answer
232 views
C function call and parameter tracing - test case and mock generation
I have a large code base of quite old C code on an embedded system and unfortunately there are no automated test cases/suites. This makes restructuring and refactoring code a dangerous task.
Manually ...
6
votes
1answer
114 views
How does one unit test handling of the error conditions for Python/C APIs like PyType_Ready and PyObject_New?
It's fairly straightforward (if tedious) to unit test Python extension modules written in C, including the error cases for many of the Python/C APIs such as PyArg_ParseTuple. For example, the ...
0
votes
2answers
497 views
Why do I get 'multiple definition' errors when linking against an archive?
I'm using CppUTest to test the C code defined in a fornol.c source file. That file defines the main production main() function.
I also have an AllTests.cpp file that also has a main() function, but ...
2
votes
2answers
175 views
Volatile keyword allows access to const structures in UnitTest++
I'm using the UnitTest++ framework to implement unit tests on some C code I'm responsible for. The end product is embedded and uses const structures to hold configuration information. Since the target ...
7
votes
2answers
421 views
Function mocking (for testing) in C?
I would like to write tests for a C library, in C. I'd like to mock out some functions for the test.
Suppose my library is compiled from the following source:
/* foo.h */
int myfunction(int x, int ...
5
votes
2answers
295 views
How can I unit test a managed wrapper around C code?
I will be creating a Managed-C++ wrapper around some C functions to allow its use in other .NET solutions. I'm looking at providing a very minimalist wrapper, something like:
Signature in C header:
...
1
vote
3answers
352 views
C unit test: stubbing fread/fwrite functions
I started writing a little program in C as a development excercise and I want to have a lot of unit test for this programs. The problem is that from time to time it uses fread/fwrite and other ...
8
votes
2answers
2k views
C Unit Testing Framework
I am new to C programming I have been programming in Java for a few years now.
I am trying to find a framework for unit testing a C program, preferable a cross platform framework.
Ideally the ...
3
votes
2answers
124 views
Defacto template application in Python
Is there a defacto template application for Python?
I am trying to auto generate C code for use in unit tests from python
My original approach using print statements is very clunky and error prone
...
1
vote
3answers
106 views
Lvalues, Rvalues and Array Initialisation in C
Being able to define an array e.g.
int a[] = {1,2,3};
is very convenient, however, the array a is an r-value so I can't subsequently change the values in a, e.g.
a[] = {4,5,6};
The context for ...


