Skip to content

Commit

Permalink
tests: fix test_hwtimer_spin
Browse files Browse the repository at this point in the history
Actually test hwtimer_spin, not hwtimer_arch*

Closes: RIOT-OS#715
  • Loading branch information
LudwigKnuepfer committed Apr 22, 2014
1 parent 996c08a commit acc8556
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_hwtimer_spin/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ int main(void)
printf("when the race condition is hit, hwtimer will wait a very very long time...\n");

while (1) {
for (unsigned long i = 256; i; i = i >> 1) {
for (unsigned long i = 6; i; i = i >> 1) {
printf("wait %lu\n", i);
hwtimer_wait(i);
}
Expand Down

0 comments on commit acc8556

Please sign in to comment.