cunit: add load_plugin unit test.
This commit is contained in:
parent
3a9c774979
commit
476c6eb285
@ -23,6 +23,7 @@
|
|||||||
#include <freerdp/freerdp.h>
|
#include <freerdp/freerdp.h>
|
||||||
#include <freerdp/utils/mutex.h>
|
#include <freerdp/utils/mutex.h>
|
||||||
#include <freerdp/utils/semaphore.h>
|
#include <freerdp/utils/semaphore.h>
|
||||||
|
#include <freerdp/utils/load_plugin.h>
|
||||||
|
|
||||||
#include "test_utils.h"
|
#include "test_utils.h"
|
||||||
|
|
||||||
@ -42,6 +43,7 @@ int add_utils_suite(void)
|
|||||||
|
|
||||||
add_test_function(mutex);
|
add_test_function(mutex);
|
||||||
add_test_function(semaphore);
|
add_test_function(semaphore);
|
||||||
|
add_test_function(load_plugin);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -65,3 +67,11 @@ void test_semaphore(void)
|
|||||||
freerdp_sem_signal(sem);
|
freerdp_sem_signal(sem);
|
||||||
freerdp_sem_free(sem);
|
freerdp_sem_free(sem);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void test_load_plugin(void)
|
||||||
|
{
|
||||||
|
void* entry;
|
||||||
|
|
||||||
|
entry = freerdp_load_plugin("cliprdr", "VirtualChannelEntry");
|
||||||
|
CU_ASSERT(entry != NULL);
|
||||||
|
}
|
||||||
|
@ -25,3 +25,4 @@ int add_list_suite(void);
|
|||||||
|
|
||||||
void test_mutex(void);
|
void test_mutex(void);
|
||||||
void test_semaphore(void);
|
void test_semaphore(void);
|
||||||
|
void test_load_plugin(void);
|
||||||
|
Loading…
Reference in New Issue
Block a user