From 03ab00aec5d10f4a2d048fab7f16489cf33fcc1d Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Mon, 24 Oct 2016 14:21:51 +0200 Subject: Update the tests and test infrastructure in test/regression Tests updated to work with x86 64 bits. Infrastructure added: script "Runtest", with ability to have different reference outputs depending on platform or bit size. --- test/regression/sizeof2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/regression/sizeof2.c') diff --git a/test/regression/sizeof2.c b/test/regression/sizeof2.c index 66e38c02..7b2f189e 100644 --- a/test/regression/sizeof2.c +++ b/test/regression/sizeof2.c @@ -3,7 +3,7 @@ int main() { - printf("%d\n", sizeof("abcd")); - printf("%d\n", sizeof(L"abcd") / sizeof(wchar_t)); + printf("%d\n", (int) sizeof("abcd")); + printf("%d\n", (int) (sizeof(L"abcd") / sizeof(wchar_t))); return 0; } -- cgit