diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2020-04-10 01:59:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-10 01:59:15 -0400 |
commit | 2b0a5e96ae76e6e2a2ef29e234af2770f8ef0e7a (patch) | |
tree | 38f5579f6f76037dc79f086c96f625495838e4e8 /tests/framework.h | |
parent | 71c0eab454352578fa58abaa47984ca6d6a588c3 (diff) | |
parent | 941893c1f6070b789c5ddf8376cc7abfe0dddd0a (diff) | |
download | spmc-2b0a5e96ae76e6e2a2ef29e234af2770f8ef0e7a.tar.gz |
Merge pull request #19 from jhunkeler/test-fs_human_readable_size
Add test_human_readable_size
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]; }; |