mirror of
https://github.com/winfsp/winfsp.git
synced 2025-06-14 15:52:47 -05:00
add winfsp-tests and ext/tlib
This commit is contained in:
11
tst/winfsp-tests/mount-test.c
Normal file
11
tst/winfsp-tests/mount-test.c
Normal file
@ -0,0 +1,11 @@
|
||||
#include <winfsp/winfsp.h>
|
||||
#include <tlib/testsuite.h>
|
||||
|
||||
void mount_test(void)
|
||||
{
|
||||
}
|
||||
|
||||
void mount_tests(void)
|
||||
{
|
||||
TEST(mount_test);
|
||||
}
|
8
tst/winfsp-tests/winfsp-tests.c
Normal file
8
tst/winfsp-tests/winfsp-tests.c
Normal file
@ -0,0 +1,8 @@
|
||||
#include <tlib/testsuite.h>
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
TESTSUITE(mount_tests);
|
||||
tlib_run_tests(argc, argv);
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user