X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Ftest-sha1.c;h=c7aec4b7429cc73240df7fb0b43a4a1b2ec4d0ae;hb=a082dd9b6080cb0913d0818cb4858045db24a011;hp=65751c85ccf05ccbb636376f595b807b267d2099;hpb=5eccf359391f7fe2cdb0edbaaf5680895c115218;p=openvswitch 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); }