From 36ce07093b68b07513149577c209ae7a57ab356b Mon Sep 17 00:00:00 2001
From: Gabriele Contini <contini.mailing@gmail.com>
Date: 周日, 15 3月 2020 16:26:21 +0800
Subject: [PATCH] Merge branch 'feature/pc_identifiers' into develop issues #2 #3 #14 #49

---
 test/functional/CMakeLists.txt |   40 ++++++++++++++++++++--------------------
 1 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/test/functional/CMakeLists.txt b/test/functional/CMakeLists.txt
index 60c676e..6d2397b 100644
--- a/test/functional/CMakeLists.txt
+++ b/test/functional/CMakeLists.txt
@@ -2,20 +2,17 @@
  	generate-license.cpp
 )
 
-target_link_libraries(
-	license_generator_snippet
+target_link_libraries( license_generator_snippet
  	 Boost::unit_test_framework 
      Boost::filesystem
      Boost::system
 )
 
-add_executable(
- test_standard_license
+add_executable( test_standard_license
  standard-license_test.cpp
 )
 
-target_link_libraries(
- test_standard_license
+target_link_libraries( test_standard_license
  licensecc_static
  license_generator_snippet
  Boost::unit_test_framework 
@@ -23,13 +20,11 @@
  Boost::system
 )
 
-add_executable(
- test_date
+add_executable( test_date
  date_test.cpp
 )
 
-target_link_libraries(
- test_date
+target_link_libraries( test_date
  licensecc_static
  license_generator_snippet
  Boost::unit_test_framework 
@@ -37,8 +32,7 @@
  Boost::system
 )
 
-add_executable(
- test_signature_verifier
+add_executable( test_signature_verifier
  signature_verifier_test.cpp
 )
 
@@ -52,24 +46,30 @@
 )
 
 
-add_executable(
- test_volid
- volid_test.cpp
-)
+add_executable(test_it_hw_identifier hw_identifier_it_test.cpp)
 
-target_link_libraries(
- test_volid
- licensecc_static
+target_link_libraries(test_it_hw_identifier
  license_generator_snippet
+ licensecc_static
  Boost::unit_test_framework 
  Boost::filesystem
  Boost::system
 )
 
+add_executable(test_crack crack_test.cpp)
 
+target_link_libraries( test_crack
+ license_generator_snippet
+ licensecc_static
+ Boost::unit_test_framework 
+ Boost::filesystem
+ Boost::system
+)
+
+ADD_TEST(NAME test_crack COMMAND test_crack WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
 ADD_TEST(NAME test_date COMMAND test_date WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
+ADD_TEST(NAME test_it_hw_identifier COMMAND test_it_hw_identifier WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
 ADD_TEST(NAME test_standard_license COMMAND test_standard_license WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
 ADD_TEST(NAME test_signature_verifier COMMAND test_signature_verifier WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
-ADD_TEST(NAME test_volid COMMAND test_volid WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
 
 

--
Gitblit v1.9.1