diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-04-10 00:40:52 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-04-10 00:40:52 -0400 |
commit | 941893c1f6070b789c5ddf8376cc7abfe0dddd0a (patch) | |
tree | 20794d6ef64459dd0a1a8009670902d0c9b358e8 /tests/framework.h | |
parent | 0f0dd17bc5a2c3149684f2a50fbefae09e49be72 (diff) | |
download | spmc-941893c1f6070b789c5ddf8376cc7abfe0dddd0a.tar.gz |
Add test_human_readable_size
* Add additional integer types to TestCase union
Diffstat (limited to 'tests/framework.h')
-rw-r--r-- | tests/framework.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/framework.h b/tests/framework.h index c083b8a..2a7b268 100644 --- a/tests/framework.h +++ b/tests/framework.h @@ -10,6 +10,10 @@ union TestValue { char character; unsigned int unsigned_integer; signed int signed_integer; + unsigned long unsigned_long; + signed long signed_long; + unsigned long long unsigned_long_long; + signed long long signed_long_long; float floating; char str[PATH_MAX]; }; |