diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/printf/output.txt | 2 | ||||
-rw-r--r-- | tests/printf/test.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/tests/printf/output.txt b/tests/printf/output.txt index 01822327..19a6c1c2 100644 --- a/tests/printf/output.txt +++ b/tests/printf/output.txt @@ -8274,3 +8274,5 @@ ffffff8000000000 1 1 1 + +no_new_line diff --git a/tests/printf/test.c b/tests/printf/test.c index efd9d087..d05ba096 100644 --- a/tests/printf/test.c +++ b/tests/printf/test.c @@ -8279,5 +8279,7 @@ int main() { printf("%hhx\n", -0xFF); printf("%hx\n", -0xFFFF); printf("%x\n", -0xFFFFFFFF); + printf("\n"); + printf("no_new_line"); return 0; } |