mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
tests/pthread_tls: fix typos
This commit is contained in:
parent
5df7c9ea59
commit
243ee05bee
@ -30,7 +30,7 @@ void *run(void *parameter)
|
||||
|
||||
(void)parameter;
|
||||
|
||||
printf("\n-= TEST 1 - create %d tls with sequencial values 0...%d =-\n",
|
||||
printf("\n-= TEST 1 - create %d tls with sequential values 0...%d =-\n",
|
||||
NUMBER_OF_TLS, NUMBER_OF_TLS - 1);
|
||||
|
||||
for (int i = 0; i < NUMBER_OF_TLS; ++i) {
|
||||
@ -39,7 +39,7 @@ void *run(void *parameter)
|
||||
pthread_setspecific(aKeys[i], &aTLS_values[i]);
|
||||
}
|
||||
|
||||
printf("now rise sequencial by one values 1...%d\n", NUMBER_OF_TLS);
|
||||
printf("now rise sequential by one values 1...%d\n", NUMBER_OF_TLS);
|
||||
|
||||
for (int i = 0; i < NUMBER_OF_TLS; ++i) {
|
||||
aTLS_values[i]++;
|
||||
|
@ -14,7 +14,7 @@ def _check_test_output(child):
|
||||
|
||||
def testfunc(child):
|
||||
child.expect('START')
|
||||
child.expect('-= TEST 1 - create 20 tls with sequencial values 0...19 =-')
|
||||
child.expect('-= TEST 1 - create 20 tls with sequential values 0...19 =-')
|
||||
_check_test_output(child)
|
||||
child.expect('-= TEST 2 - '
|
||||
r'delete deliberate key \(key\[5\]:-?\d+\) =-')
|
||||
|
Loading…
Reference in New Issue
Block a user