aboutsummaryrefslogtreecommitdiffstats
path: root/test/regression/sizeof2.c
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2016-10-24 14:21:51 +0200
committerXavier Leroy <xavier.leroy@inria.fr>2016-10-24 14:34:59 +0200
commit03ab00aec5d10f4a2d048fab7f16489cf33fcc1d (patch)
tree16d5313fb0d61585f6d82c6232228d716e9f7553 /test/regression/sizeof2.c
parent2fc1f0ce18c45d1148493d58e0c848fc70c44a4d (diff)
downloadcompcert-kvx-03ab00aec5d10f4a2d048fab7f16489cf33fcc1d.tar.gz
compcert-kvx-03ab00aec5d10f4a2d048fab7f16489cf33fcc1d.zip
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.
Diffstat (limited to 'test/regression/sizeof2.c')
-rw-r--r--test/regression/sizeof2.c4
1 files changed, 2 insertions, 2 deletions
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;
}