Skip to content

Commit

Permalink
add startup log in profile initialization test
Browse files Browse the repository at this point in the history
  • Loading branch information
AO-StreetArt committed Jul 19, 2018
1 parent 7c1ed90 commit 8b40d1d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions aossl/profile/profile_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,10 @@ int main(int argc, char** argv) {
startup_profile.add_opt(key4, val2);
startup_profile.add_secure_opt(secretKey);
startup_profile.load_config();
std::cout << "Startup Log" << std::endl;
for (auto& elt : startup_log) {
std::cout << elt << std::endl;
}
// Make sure all the correct keys are still present
assert(startup_profile.opt_exist(secretKey));
assert(startup_profile.opt_exist(akey));
Expand Down

0 comments on commit 8b40d1d

Please sign in to comment.