1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
Commit Graph

1470 Commits

Author SHA1 Message Date
Martine Lenders
15732bede6
tests: provide tests for evtimer 2017-06-16 16:50:54 +02:00
Vincent Dupont
1b2b5d9df9 Merge pull request #5624 from OTAkeys/pr/mtdi_flash
mtd: add a generic low level flash interface
2017-03-17 17:18:13 +01:00
879fe0c416 tests/unittests: add nucleo144-f446 to cortexM boards 2017-03-16 18:24:34 +01:00
Joakim Nohlgård
9782be1d91 unittests: add unit test for mtd-vfs 2017-03-16 18:19:05 +01:00
Vincent Dupont
81149f1843 unittests: add mtd unittests 2017-03-16 11:24:46 +01:00
67b7111805 tests: add nucleo-f302 to unsufficient memory list 2017-03-16 10:46:14 +01:00
83307d311e tests/unittest: add nucleo-f302 to unsufficient memory list 2017-03-16 10:44:37 +01:00
ca85e8afe4 Merge pull request #6651 from aabadie/nucleo32_l031
boards/nucleo32-l031: initial support
2017-03-16 08:30:48 +01:00
b0128f9dd1 tests: remove nucleo32-l031 from memory intensive tests 2017-03-15 14:08:06 +01:00
a0e45d1390 tests/unittest: remove nucleo32-l031 from unittest 2017-03-15 14:08:06 +01:00
721ca1ee78 tests/unittests/relic: remove nucleo-f410 from blacklist 2017-03-15 13:25:21 +01:00
Francisco Acosta
1a17955551 Merge pull request #6025 from aabadie/nucleo_f410
boards/nucleo-f410: initial support
2017-03-15 13:03:39 +01:00
119fc70075 Merge pull request #6610 from miri64/netdev2/enh/rename-to-netdev
netdev2: rename to netdev and remove `gnrc_netdev`
2017-03-15 11:35:19 +01:00
ff5b0bf538 tests/driver_veml6070: cleanup 2017-03-15 10:11:24 +01:00
Martine Lenders
29842bb5e4 netdev2: rename to netdev and remove gnrc_netdev
With some minor hand-edits I used the following chain of commands:

```sh
git rm sys/include/net/gnrc/netdev.h
git grep --name-only -i netdev2 | \
        xargs sed -i -e 's/^\(NETDEV\)2\(.*\)\( [("]\)/\1\2 \3/g' \
                     -e 's/\(netdev\)2\(.*\)\( \/\*\*<\)/\1\2 \3/I' \
                     -e 's/\(netdev\)2/\1/gI'
git add -p
git commit --amend
git ls-tree --full-tree -r HEAD --name-only | \
        grep "netdev2" | xargs -I'{}' dirname '{}' | uniq | \
        grep "netdev2" | while read dir; do
                new_dir="$(echo "$dir" | sed "s/netdev2/netdev/g")"
                git mv -f "$dir" "$new_dir"
        done
git commit --amend
git ls-tree --full-tree -r HEAD --name-only | \
        grep "netdev2" | while read file; do
                new_file="$(echo "$file" | sed "s/netdev2/netdev/g")"
                git mv -f "$file" "$new_file"
        done
git commit --amend
git grep --name-only "\<drivers_netdev_netdev\>" | \
        xargs sed -i "s/\<drivers_netdev_netdev\>/drivers_netdev_api/g"
git add -p
git commit --amend
```
2017-03-15 09:31:20 +01:00
478ee1a9a0 tests: add nucleo-f410 to unsufficient memory boards 2017-03-14 18:45:11 +01:00
Vincent Dupont
db65e8b3fe tests: sort ARM_CORTEX_M_BOARDS in Makefile 2017-03-14 08:12:59 +01:00
Vincent Dupont
ad0f0877cc tests,examples: sort BOARD_INSUFFICIENT_MEMORY alphabetically 2017-03-13 18:27:50 +01:00
Martine Lenders
ee4b2ce331 Merge pull request #6719 from Lotterleben/missing_test_targets
tests: Add missing test targets
2017-03-11 11:41:23 +01:00
Joakim Nohlgård
d559428cc6 Merge pull request #6662 from smlng/pr/tests/opt_xtimer_drift
tests: optimize xtimer drift for size
2017-03-09 16:47:23 +01:00
26b99a57be cpu: native: add vfs wrappers 2017-03-07 17:59:59 +01:00
Joakim Nohlgård
0371769e72 devfs: Dynamic file system for device nodes 2017-03-07 17:59:59 +01:00
Joakim Nohlgård
dcc37329df sys/vfs: A virtual file system (VFS) layer for RIOT
The VFS layer provides file system abstractions to allow using a unified
interface to access files from mounted file systems.
2017-03-07 17:59:57 +01:00
Lotte Steenbrink
640a69731c tests/thread_flood: add test target to Makefile 2017-03-07 07:37:06 -08:00
Lotte Steenbrink
32df7b4163 tests/rmutex: add test target to Makefile 2017-03-07 07:32:13 -08:00
Lotte Steenbrink
bad5a19b03 tests/mutex_order: add test target to Makefile 2017-03-07 07:22:25 -08:00
Joakim Nohlgård
0f74b5b2a0 tests/emb6: Revert workaround for false positive
This line gave a -Wunused-value in gcc-4.6 before the stdatomic.h header
for msp430 was modified as a workaround.
2017-03-07 10:21:37 +01:00
Hauke Petersen
f3d3c08e2a Merge pull request #6679 from brummer-simon/ringbuffer-remove-bugfix
core: bugfix: ringbuffer_remove
2017-03-06 17:27:07 +01:00
Francisco Acosta
7ec6fcacdf Merge pull request #6667 from aabadie/fix_test_xbee
test/driver_xbee: fix xbee param UART export in Makefile
2017-03-03 15:37:40 +01:00
Loïc Dauphin
ac53dff0cb tests: rename opencm9-04 into opencm904 2017-03-03 09:57:53 +01:00
d0e641e80b tests: remove nucleo-l053 from memory intensive tests 2017-03-02 13:52:12 +01:00
0e874357a2 tests: remove nucleo-l053 from unittests 2017-03-02 13:52:12 +01:00
Simon Brummer
68581a8fbe core: bugfix: ringbuffer_remove 2017-03-01 22:01:26 +01:00
BytesGalore
dacc3cba9f Merge pull request #6283 from OTAkeys/pr/hmac_iterative_calc
hashes/sha256: add iterative hmac calc. functions
2017-03-01 17:14:11 +01:00
Hermann Lelong
f2ef9db988 hashes/sha256: add iterative hmac calc. functions
Add init, update, and final functions to do HMAC
calculation using blocks, instead of one shot.

Unit tests: use the PRF-6 test vector to test the case
where data is splitted in 3 different blocks.
2017-03-01 15:51:21 +01:00
Sebastian Meiling
f6022a283d Merge pull request #6541 from brummer-simon/gnrc_tcp-cleanup
gnrc_tcp: cleanup
2017-03-01 09:34:49 +01:00
Francisco Acosta
29753d6018 Merge pull request #6433 from aabadie/nucleo_l073
boards/nucleo-l073: initial support
2017-02-28 20:22:39 +01:00
cb10ba8b13 test/driver_xbee: fix xbee param UART export in Makefile 2017-02-28 17:33:04 +01:00
b0952a297d tests: add test for veml6070 sensor 2017-02-28 13:20:21 +01:00
smlng
0acf43a231 tests, xtimer_hang: add README 2017-02-27 19:37:55 +01:00
smlng
50c9242700 tests, xtimer_hang: correct output (percentage) 2017-02-27 19:37:55 +01:00
smlng
ae5ee83275 tests: add README for xtimer_drift 2017-02-27 18:05:53 +01:00
smlng
ce29357fa3 tests: optimize mem size of xtimer_drift
- remove descriptive puts messages, and use LOG_DEBUG/INFO
- rational: fits into 2k RAM now, and works on arduino duemilanove
2017-02-27 18:05:42 +01:00
Hauke Petersen
62fc1e0c3d test/thread_flags: remove unused module 'xtimer' 2017-02-27 15:09:30 +01:00
Simon Brummer
1ae3b51224 gnrc_tcp: cleanup: removed unnecessary includes 2017-02-26 17:31:23 +01:00
3f3ec10bd7 tests/thread_cooperation: exclude nucleo-l073 2017-02-24 16:13:32 +01:00
4ca7f1096a tests/unittests: exclude nucleo-l073 board 2017-02-24 16:12:41 +01:00
smlng
1562ef7d35 tests: set default board=samr21-xpro for tests/driver_ 2017-02-23 14:56:30 +01:00
smlng
0e57a0542b tests: set default board=samr21-xpro for tests/periph_spi 2017-02-23 14:56:26 +01:00
smlng
ca25ab669d tests: set default board=samr21-xpro for tests/periph_rtt 2017-02-23 14:55:58 +01:00