diff options
| author | Elliott Hughes <enh@google.com> | 2013-02-19 22:13:53 +0000 |
|---|---|---|
| committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2013-02-19 22:13:53 +0000 |
| commit | ccd403161cdcc88a0ffcaecd1bc707e2d4c88a1c (patch) | |
| tree | 102909efb095eaa603f94de0617720b5364875b9 /tests/stdio_test.cpp | |
| parent | 593abb7b593a34d501c90512953a7368add6d185 (diff) | |
| parent | c641cafbc387849510d7f408e85f72fa3608916d (diff) | |
Merge "use architecture-specific ssize_t definition"
Diffstat (limited to 'tests/stdio_test.cpp')
| -rw-r--r-- | tests/stdio_test.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/stdio_test.cpp b/tests/stdio_test.cpp index 70a71fb87d..d2311fd547 100644 --- a/tests/stdio_test.cpp +++ b/tests/stdio_test.cpp @@ -169,3 +169,12 @@ TEST(stdio, getline_invalid) { ASSERT_EQ(getline(&buffer, &buffer_length, fp), -1); ASSERT_EQ(EBADF, errno); } + +TEST(stdio, printf_ssize_t) { + // We used to have a ssize_t definition that confused GCC into saying: + // error: format '%zd' expects argument of type 'signed size_t', + // but argument 4 has type 'ssize_t {aka long int}' [-Werror=format] + ssize_t v = 1; + char buf[32]; + snprintf(buf, sizeof(buf), "%zd", v); +} |
