-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release 2015.12 - RC1 #10
Comments
For all testers: this issue refers to commit RIOT-OS/RIOT@8ec1fd4. |
I'm testing 01-CI right now. |
And 03. |
While 03.03 is running (takes 1h) I'm taking doing 04. |
I use the following patch to test 06: diff --git a/examples/gnrc_networking/udp.c b/examples/gnrc_networking/udp.c
index af10651..926a1ae 100644
--- a/examples/gnrc_networking/udp.c
+++ b/examples/gnrc_networking/udp.c
@@ -30,7 +30,7 @@
#include "xtimer.h"
static gnrc_netreg_entry_t server = { NULL, GNRC_NETREG_DEMUX_CTX_ALL, KERNEL_PID_UNDEF };
-
+static uint16_t data_buffer[512];
static void send(char *addr_str, char *port_str, char *data, unsigned int num,
unsigned int delay)
@@ -38,6 +38,11 @@ static void send(char *addr_str, char *port_str, char *data, unsigned int num,
uint8_t port[2];
uint16_t tmp;
ipv6_addr_t addr;
+ data = (char *)&data_buffer[0];
+
+ for (uint16_t i = 0; i < 512; i++) {
+ data[i] = i;
+ }
/* parse destination address */
if (ipv6_addr_from_str(&addr, addr_str) == NULL) {
@@ -56,7 +61,7 @@ static void send(char *addr_str, char *port_str, char *data, unsigned int num,
for (unsigned int i = 0; i < num; i++) {
gnrc_pktsnip_t *payload, *udp, *ip;
/* allocate payload */
- payload = gnrc_pktbuf_add(NULL, data, strlen(data), GNRC_NETTYPE_UNDEF);
+ payload = gnrc_pktbuf_add(NULL, data, sizeof(data_buffer), GNRC_NETTYPE_UNDEF);
if (payload == NULL) {
puts("Error: unable to copy data to packet buffer");
return; |
Some words to 02-Tests Task 1 |
For many there are |
And you mean 02 instead of 01, right? |
And thanks for testing :-) |
Yes! Corrected. |
Well, at least a handfull. ;-)
But those were already fairly obvious. All succeeded btw. |
Well then there is something we have as a target for next release: improve test automation :-D |
Closed in favor of #11 |
This issue lists the status of all tests for the Release Candidate 1 of the 2015.12 release.
Specs tested:
fib_sr
tests still failing (see fib_sr: unittests for fib_sr fail sporadically RIOT#4513)/dev/random
dry./usr/local/src/RIOT/tests/periph_rtc/bin/native/periph_rtc.elf: rtc_set_time: not implemented
. No Alarms.Testing... (25%) make: *** [term] Segmentation fault
147 diff=3007\ too large difference.\ Test Failed
Sometimes fails sometimes not.The text was updated successfully, but these errors were encountered: