Skip to main content

App for unit testing with GDB

Project description

GUnit

App for executing unit tests using GDB.

Documentation: https://github.com/estcube/GUnit/wiki/Documentation

Example

For example if OpenOCD is used as GDB server and we are testing on an ARM chip. Please note that you need to have the openOCD server running in the background.

Secondly, all the outputs will be put into gunit directory. To specify where the directory will be generated, define build_dir argument for the constructor. By default, it will be your current working directory.

from gunit import GUnit

# Create a GUnit object for OpenOCD
gunit = GUnit.openOCD("localhost:9000", executable='arm-none-eabi-gdb')

# Execute the tests in the compiled file
gunit.test("test.elf")

# Construct a JUnit test report
gunit.junit()

Here you can see a simple example of the .c file that could be used with the python example above.

#include "GUnit.h"
#include "foo.h"

void test1() {
    GASSERT(5, foo_getfive());
}

void before() {
    foo_init();
}

void after() {
    foo_deinit();
}

int main() {
    // This is for executing a test suite (a collection of tests) with before and after functions.
    GEXECUTE(before, after, test1);

    // This macro has to be called at the end of the test program.
    GEND();

    // Block forever so we don't go into undefined memory regions
    while(true);
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gunit-0.1.24.tar.gz (6.7 kB view hashes)

Uploaded Source

Built Distribution

gunit-0.1.24-py3-none-any.whl (8.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page