mirror of
https://github.com/winfsp/winfsp.git
synced 2025-06-14 15:52:47 -05:00
dll: FspVersion
This commit is contained in:
44
tst/winfsp-tests/version-test.c
Normal file
44
tst/winfsp-tests/version-test.c
Normal file
@ -0,0 +1,44 @@
|
||||
/**
|
||||
* @file version-test.c
|
||||
*
|
||||
* @copyright 2015-2017 Bill Zissimopoulos
|
||||
*/
|
||||
/*
|
||||
* This file is part of WinFsp.
|
||||
*
|
||||
* You can redistribute it and/or modify it under the terms of the GNU
|
||||
* General Public License version 3 as published by the Free Software
|
||||
* Foundation.
|
||||
*
|
||||
* Licensees holding a valid commercial license may use this file in
|
||||
* accordance with the commercial license agreement provided with the
|
||||
* software.
|
||||
*/
|
||||
|
||||
#include <winfsp/winfsp.h>
|
||||
#include <tlib/testsuite.h>
|
||||
|
||||
#include "winfsp-tests.h"
|
||||
|
||||
static void version_test(void)
|
||||
{
|
||||
/* this is not a real test! */
|
||||
|
||||
UINT32 Version1, Version2;
|
||||
NTSTATUS Result;
|
||||
|
||||
Result = FspVersion(&Version1);
|
||||
ASSERT(NT_SUCCESS(Result));
|
||||
|
||||
Result = FspVersion(&Version2);
|
||||
ASSERT(NT_SUCCESS(Result));
|
||||
|
||||
ASSERT(Version1 == Version2);
|
||||
|
||||
FspDebugLog(__FUNCTION__ ": FspVersion=%d.%d\n", HIWORD(Version1), LOWORD(Version1));
|
||||
}
|
||||
|
||||
void version_tests(void)
|
||||
{
|
||||
TEST(version_test);
|
||||
}
|
@ -184,6 +184,7 @@ int main(int argc, char *argv[])
|
||||
TESTSUITE(eventlog_tests);
|
||||
TESTSUITE(path_tests);
|
||||
TESTSUITE(dirbuf_tests);
|
||||
TESTSUITE(version_tests);
|
||||
TESTSUITE(mount_tests);
|
||||
TESTSUITE(timeout_tests);
|
||||
TESTSUITE(memfs_tests);
|
||||
|
Reference in New Issue
Block a user