From aa2d499fa1723688cf93b57653be59c819d9ce33 Mon Sep 17 00:00:00 2001
From: gcontini <1121667+gcontini@users.noreply.github.com>
Date: 周一, 04 5月 2020 23:15:17 +0800
Subject: [PATCH] fix examples

---
 test/functional/generate-license.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/test/functional/generate-license.cpp b/test/functional/generate-license.cpp
index 59e55ae..ae42689 100644
--- a/test/functional/generate-license.cpp
+++ b/test/functional/generate-license.cpp
@@ -49,7 +49,7 @@
 	cout << "executing :" << ss.str() << endl;
 	const int retCode = std::system(ss.str().c_str());
 	BOOST_CHECK_EQUAL(retCode, 0);
-	BOOST_ASSERT(fs::exists(license_fname));
+	BOOST_ASSERT_MSG(fs::exists(license_fname), "license exists");
 	CSimpleIniA ini;
 	const SI_Error rc = ini.LoadFile(license_fname.c_str());
 	BOOST_CHECK_GE(rc, 0);

--
Gitblit v1.9.1