aboutsummaryrefslogtreecommitdiff
path: root/test/CMakeLists.txt
diff options
context:
space:
mode:
authorJohn Levon <john.levon@nutanix.com>2020-11-25 17:33:25 +0000
committerGitHub <noreply@github.com>2020-11-25 17:33:25 +0000
commit76fb4e20298c7c41efb20a8a53ae81d2ce716303 (patch)
tree2055c804d241b4dd366d5c5ae1ee5be98761389c /test/CMakeLists.txt
parent48c55b26a05ab8d4bf7afdfed98bd8a71142848f (diff)
downloadlibvfio-user-76fb4e20298c7c41efb20a8a53ae81d2ce716303.zip
libvfio-user-76fb4e20298c7c41efb20a8a53ae81d2ce716303.tar.gz
libvfio-user-76fb4e20298c7c41efb20a8a53ae81d2ce716303.tar.bz2
add "make test"; run it in pre-commit (#127)
Also rename test.c to reflect it should cover unit tests. Reviewed-by: Swapnil Ingle <swapnil.ingle@nutanix.com> Signed-off-by: John Levon <john.levon@nutanix.com>
Diffstat (limited to 'test/CMakeLists.txt')
-rw-r--r--test/CMakeLists.txt7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index e5fc7a0..a04e0f1 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -26,5 +26,8 @@
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
-add_executable(test test.c )
-target_link_libraries(test cmocka json-c muser)
+add_executable(unit-tests unit-tests.c)
+target_link_libraries(unit-tests cmocka json-c muser)
+
+enable_testing()
+add_test(NAME unit-tests COMMAND unit-tests)