diff options
author | Brad King <brad.king@kitware.com> | 2009-09-25 15:19:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-09-25 15:19:39 (GMT) |
commit | 9027506b10d17448c598ccf693e40903383381ac (patch) | |
tree | e358493b816272e7adf1ef1645a72bd51a6526e3 /Source/kwsys | |
parent | 28531d17072d363eafb0b7de1946a7cffef2f6f0 (diff) | |
download | CMake-9027506b10d17448c598ccf693e40903383381ac.zip CMake-9027506b10d17448c598ccf693e40903383381ac.tar.gz CMake-9027506b10d17448c598ccf693e40903383381ac.tar.bz2 |
Avoid word 'Copyright' in KWSys MD5 encode test
We replace the test text in the kwsys.testEncode test to avoid the word
'Copyright'. This simplifies grep results for Copyright verification.
Diffstat (limited to 'Source/kwsys')
-rw-r--r-- | Source/kwsys/testEncode.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/kwsys/testEncode.c b/Source/kwsys/testEncode.c index fb576c4..d285340 100644 --- a/Source/kwsys/testEncode.c +++ b/Source/kwsys/testEncode.c @@ -24,9 +24,9 @@ #include <string.h> static const unsigned char testMD5input1[] = -" Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved.\n" -" See Copyright.txt or http://www.kitware.com/Copyright.htm for details.\n"; -static const char testMD5output1[] = "04051e509e81ef0b1612ddf0e52ca89e"; +" A quick brown fox jumps over the lazy dog.\n" +" This is sample text for MD5 sum input.\n"; +static const char testMD5output1[] = "8f146af46ed4f267921bb937d4d3500c"; static const int testMD5input2len = 28; static const unsigned char testMD5input2[] = "the cow jumped over the moon"; |