Joakim Nohlgård
9782be1d91
unittests: add unit test for mtd-vfs
6 years ago
Vincent Dupont
81149f1843
unittests: add mtd unittests
6 years ago
Alexandre Abadie
67b7111805
tests: add nucleo-f302 to unsufficient memory list
6 years ago
Alexandre Abadie
83307d311e
tests/unittest: add nucleo-f302 to unsufficient memory list
6 years ago
Alexandre Abadie
b0128f9dd1
tests: remove nucleo32-l031 from memory intensive tests
6 years ago
Alexandre Abadie
a0e45d1390
tests/unittest: remove nucleo32-l031 from unittest
6 years ago
Alexandre Abadie
721ca1ee78
tests/unittests/relic: remove nucleo-f410 from blacklist
6 years ago
Alexandre Abadie
ff5b0bf538
tests/driver_veml6070: cleanup
6 years ago
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
```
6 years ago
Alexandre Abadie
478ee1a9a0
tests: add nucleo-f410 to unsufficient memory boards
6 years ago
Vincent Dupont
db65e8b3fe
tests: sort ARM_CORTEX_M_BOARDS in Makefile
6 years ago
Vincent Dupont
ad0f0877cc
tests,examples: sort BOARD_INSUFFICIENT_MEMORY alphabetically
6 years ago
Kaspar Schleiser
26b99a57be
cpu: native: add vfs wrappers
6 years ago
Joakim Nohlgård
0371769e72
devfs: Dynamic file system for device nodes
6 years ago
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.
6 years ago
Lotte Steenbrink
640a69731c
tests/thread_flood: add test target to Makefile
6 years ago
Lotte Steenbrink
32df7b4163
tests/rmutex: add test target to Makefile
6 years ago
Lotte Steenbrink
bad5a19b03
tests/mutex_order: add test target to Makefile
6 years ago
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.
6 years ago
Loïc Dauphin
ac53dff0cb
tests: rename opencm9-04 into opencm904
6 years ago
Alexandre Abadie
d0e641e80b
tests: remove nucleo-l053 from memory intensive tests
6 years ago
Alexandre Abadie
0e874357a2
tests: remove nucleo-l053 from unittests
6 years ago
Simon Brummer
68581a8fbe
core: bugfix: ringbuffer_remove
6 years ago
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.
6 years ago
Alexandre Abadie
cb10ba8b13
test/driver_xbee: fix xbee param UART export in Makefile
6 years ago
Alexandre Abadie
b0952a297d
tests: add test for veml6070 sensor
6 years ago
smlng
0acf43a231
tests, xtimer_hang: add README
6 years ago
smlng
50c9242700
tests, xtimer_hang: correct output (percentage)
6 years ago
smlng
ae5ee83275
tests: add README for xtimer_drift
6 years ago
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
6 years ago
Hauke Petersen
62fc1e0c3d
test/thread_flags: remove unused module 'xtimer'
6 years ago
Simon Brummer
1ae3b51224
gnrc_tcp: cleanup: removed unnecessary includes
6 years ago
Alexandre Abadie
3f3ec10bd7
tests/thread_cooperation: exclude nucleo-l073
6 years ago
Alexandre Abadie
4ca7f1096a
tests/unittests: exclude nucleo-l073 board
6 years ago
smlng
1562ef7d35
tests: set default board=samr21-xpro for tests/driver_
6 years ago
smlng
0e57a0542b
tests: set default board=samr21-xpro for tests/periph_spi
6 years ago
smlng
ca25ab669d
tests: set default board=samr21-xpro for tests/periph_rtt
6 years ago
smlng
1f84b7e773
tests: set default board=samr21-xpro for tests/periph_pwm
6 years ago
smlng
7313e01e55
tests: set default board=samr21-xpro for tests/periph_i2c
6 years ago
smlng
e4e14d92d3
tests: set default board=iotlab-m3 for tests/periph_flashpage
6 years ago
smlng
50f052b943
tests: set default board=stm32f4discovery for tests/periph_dac
6 years ago
smlng
448b11b448
tests: set default board=pba-d-01-kw2x for tests/periph_adc
6 years ago
smlng
c5ac4f8ac5
tests: set default board=samr21-xpro for tests/mpu_stack_guard
6 years ago
smlng
96f9f586c9
tests: set default board=samr21-xpro for tests/pkg_cmis-dsp
6 years ago
smlng
d2b32a8c98
tests: set default board=limifrog-v1 for tests/driver_lis3mdl
6 years ago
smlng
35b12dd623
tests: set default board=stm32f4discovery for tests/warn_conflict
6 years ago
smlng
536f9d74f1
tests: fix default board for tests/board_calliope_mini
6 years ago
Alexandre Abadie
77df65e95e
tests: add nucleo32-f031 to unsufficient memory boards
6 years ago
Alexandre Abadie
3628617001
tests/unittest: add nucleo-f411 to ARM Cortex based boards
6 years ago
Kaspar Schleiser
d92a3bd5b0
tests: thread_flags: print success message
6 years ago