From c4cac9abf211b74c777b86ad7281e7b0f42a3a39 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Fri, 6 May 2011 12:39:27 -0700 Subject: [PATCH] test-sha1: Suppress sparse warning. Otherwise sparse warns: warning: memset with byte count of 1000000 --- tests/test-sha1.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/test-sha1.c b/tests/test-sha1.c index 65751c85..c7aec4b7 100644 --- a/tests/test-sha1.c +++ b/tests/test-sha1.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009 Nicira Networks. + * Copyright (c) 2009, 2011 Nicira Networks. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -127,9 +127,12 @@ test_big_vector(void) { 0x34, 0xAA, 0x97, 0x3C, 0xD4, 0xC4, 0xDA, 0xA4, 0xF6, 0x1E, 0xEB, 0x2B, 0xDB, 0xAD, 0x27, 0x31, 0x65, 0x34, 0x01, 0x6F } }; + size_t i; vec.data = xmalloc(SIZE); - memset(vec.data, 'a', SIZE); + for (i = 0; i < SIZE; i++) { + vec.data[i] = 'a'; + } test_one(&vec); free(vec.data); } -- 2.30.2