diff --git a/trunk/ConsoleDataMigration/tools/ExportedDataVerifier/OMakefile b/trunk/ConsoleDataMigration/tools/ExportedDataVerifier/OMakefile index 9300c96..6ab5b91 100644 --- a/trunk/ConsoleDataMigration/tools/ExportedDataVerifier/OMakefile +++ b/trunk/ConsoleDataMigration/tools/ExportedDataVerifier/OMakefile @@ -26,7 +26,6 @@ INCLUDES += $(SAMPLED_DEMOS_COMMON_INCLUDE_DIR) \ SOURCES[] = main.cpp ../../common/HardwareInfo.cpp - ../../common/DrawSystemState.cpp ../../common/FileTransfer.cpp ../../common/FileChecker.cpp ../../common/SdReaderWriter.cpp diff --git a/trunk/ConsoleDataMigration/tools/ExportedDataVerifier/main.cpp b/trunk/ConsoleDataMigration/tools/ExportedDataVerifier/main.cpp index 7d620bd..1edaff7 100644 --- a/trunk/ConsoleDataMigration/tools/ExportedDataVerifier/main.cpp +++ b/trunk/ConsoleDataMigration/tools/ExportedDataVerifier/main.cpp @@ -313,12 +313,12 @@ bool VerifyDirectory(const wchar_t * from_path, void* buf, ret_value = CalculateAndCompareCmac(&context, sdCmac); if(!ret_value) { - COMMON_LOGGER("Verification Failed, %s\n", GetCharStr(target_from.str().c_str())); + COMMON_LOGGER("********** Verification Failed **********\n %s\n", GetCharStr(target_from.str().c_str())); s_VerifyFail++; } else { - COMMON_LOGGER("Success\n"); + COMMON_LOGGER("Success %s\n", GetCharStr(target_from.str().c_str())); s_VerifySuccess++; } break; @@ -339,12 +339,12 @@ bool VerifyDirectory(const wchar_t * from_path, void* buf, ret_value = CalculateAndCompareCmac(&context, sdCmac); if(!ret_value) { - COMMON_LOGGER("Verification Failed, %s\n", GetCharStr(target_from.str().c_str())); + COMMON_LOGGER("********** Verification Failed **********\n %s\n", GetCharStr(target_from.str().c_str())); s_VerifyFail++; } else { - COMMON_LOGGER("Success\n"); + COMMON_LOGGER("Success %s\n", GetCharStr(target_from.str().c_str())); s_VerifySuccess++; } break; @@ -367,6 +367,8 @@ void VerifyThreadFunc() nn::Result result; COMMON_LOGGER("VerifyThreadFunc Start\n"); + s_VerifyFail = 0; + s_VerifySuccess = 0; result = common::SdMountManager::Mount();