Skip to content

Commit

Permalink
X
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusz-bloch committed Jul 18, 2023
1 parent ab15967 commit dcc8352
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libc/printf/stdio_printf.c
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ static char *test_unsignedToStr(unsigned long long int value, int base, bool big

static char *test_intToAscii(int value)
{
static char str[2];
char *str = malloc(2 * sizeof(char));
str[0] = value;
str[1] = '\0';
return str;
Expand Down
2 changes: 1 addition & 1 deletion libc/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ test:
- name: printf
execute: test-libc-printf
targets:
exclude: [armv7m4-stm32l4x6-nucleo]
# exclude: [armv7m4-stm32l4x6-nucleo]
include: [host-generic-pc]

# Executing test-printf alone on 'armv7m4-stm32l4x6-nucleo' takes ~4 min, because of large amount of test cases.
Expand Down

0 comments on commit dcc8352

Please sign in to comment.