Initial commit

This commit is contained in:
Karl Palsson 2015-10-16 20:24:12 +00:00
commit bd6902d8e8
2 changed files with 29 additions and 0 deletions

10
LICENSE Normal file
View file

@ -0,0 +1,10 @@
Code in _this_ repository should be considered under your choice of:
* Apache 2.0
* BSD 2 clause
* ISC
* MIT
* X11
* LGPL3+
libopencm3 itself has it's own license. (LGPL3+ at time of writing)

19
README.md Normal file
View file

@ -0,0 +1,19 @@
# Cross target tests for libopencm3
libopencm3(http://github.com/libopencm3/libopencm3) pull requests are often
hard to review. It can be hard to see the impact on "user" land code, it can
be hard to see how the behaviour changes from a->b.
This repository contains testing frameworks I've put together to help with
cross target testing, with the aim of making them as automated as possible.
General plan is something like....
# make -C libopencm3 clean all -j8
# make -C tests/xxx clean all flash test V=1
# cd libopencm3
# git checkout proposed-new-code
# return to step 1
Mileage _will_ vary.