Browse Source

테스트 단위 변경

Hongtae Kim 5 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,10 +22,13 @@
22 22
 std::string sha1(const void* p, size_t s);
23 23
 
24 24
 const size_t testLength[] = {
25
+#ifdef _DEBUG
26
+	1ULL << 21,
25 27
 	1ULL << 24,
26 28
 	1ULL << 29,
27
-#ifndef _DEBUG
29
+#else
28 30
 	1ULL << 31,
31
+	1ULL << 32,
29 32
 	1ULL << 33
30 33
 #endif
31 34
 };