diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-03-18 11:47:13 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-03-18 11:47:13 -0700 |
commit | e330447ce72d8ef4c678ab5354b44163b57dfed0 (patch) | |
tree | 8b947947cfc87edec9512105eaf4f56f3dfb1e11 | |
parent | e5f5b242e38ae6091e005144af9cf8e6ef866072 (diff) |
add more vsnprintf testing
-rwxr-xr-x | tests/runner.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index b93300d5..5e71e0f6 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -5291,6 +5291,11 @@ at function.:blag uint64_t B = 0x12340000000000ULL; printy("0x%llx_0x%llx", A, B); } + { + uint64_t A = 0x000009182746756; + uint64_t B = 0x192837465631ACBDULL; + printy("0x%llx_0x%llx", A, B); + } return 0; } @@ -5301,6 +5306,7 @@ at function.:blag 0x400000_0x400000 0x800000_0x800000000000 0x800_0x12340000000000 +0x9182746756_0x192837465631acbd ''') def test_printf_more(self): |