Browse Source

테스트 단위 변경

Hongtae Kim 6 years ago
parent
commit
41e9304e6a
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      WETSort/WETSort.cpp

+ 4
- 1
WETSort/WETSort.cpp View File

22
 std::string sha1(const void* p, size_t s);
22
 std::string sha1(const void* p, size_t s);
23
 
23
 
24
 const size_t testLength[] = {
24
 const size_t testLength[] = {
25
+#ifdef _DEBUG
26
+	1ULL << 21,
25
 	1ULL << 24,
27
 	1ULL << 24,
26
 	1ULL << 29,
28
 	1ULL << 29,
27
-#ifndef _DEBUG
29
+#else
28
 	1ULL << 31,
30
 	1ULL << 31,
31
+	1ULL << 32,
29
 	1ULL << 33
32
 	1ULL << 33
30
 #endif
33
 #endif
31
 };
34
 };