From 941893c1f6070b789c5ddf8376cc7abfe0dddd0a Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 10 Apr 2020 00:40:52 -0400 Subject: Add test_human_readable_size * Add additional integer types to TestCase union --- tests/framework.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tests/framework.h') 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]; }; -- cgit