From bcbba3e4cfb5ea742d1589a28c343915476a4963 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Sun, 29 May 2016 23:41:55 -0700 Subject: [PATCH] fuse_opt: testing --- tst/winfsp-tests/fuse-opt-test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tst/winfsp-tests/fuse-opt-test.c b/tst/winfsp-tests/fuse-opt-test.c index dd158ba2..1cfd9687 100644 --- a/tst/winfsp-tests/fuse-opt-test.c +++ b/tst/winfsp-tests/fuse-opt-test.c @@ -231,7 +231,7 @@ void fuse_opt_parse_test(void) "-V118", "-wWwWw", "-x=65537", - "-y=0x100000001", + "-y=040000000001", "-z=0x100000001", "--dec=+1234567890", "--neg=-1234567890", @@ -302,7 +302,7 @@ void fuse_opt_parse_test(void) ASSERT('v' == data.V); ASSERT(0 == strcmp("WwWw", data.w)); ASSERT(1 == data.x); - ASSERT((long)0x100000001 == data.y); + ASSERT((long)040000000001 == data.y); ASSERT((long long)0x100000001 == data.z); ASSERT(+1234567890 == data.dec); ASSERT(-1234567890 == data.neg);