mirror of
https://github.com/isar/libmdbx.git
synced 2025-08-19 19:39:26 +08:00
mdbx-testing: добавление extra/probe.c++
просто для проверки компилируемости.
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
int main(int argc, const char *argv[]) {
|
||||
(void)argc;
|
||||
(void)argv;
|
||||
std::cout << "FAKE-OK (since no C++20 std::thread and/or std::latch\n";
|
||||
std::cout << "FAKE-OK (since no C++20 std::thread and/or std::latch)\n";
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
|
11
test/extra/probe.c++
Normal file
11
test/extra/probe.c++
Normal file
@@ -0,0 +1,11 @@
|
||||
#include <iostream>
|
||||
|
||||
#include "mdbx.h++"
|
||||
|
||||
int main(int argc, const char *argv[]) {
|
||||
(void)argc;
|
||||
(void)argv;
|
||||
std::cout
|
||||
<< "OK (but this is do-nothing test just for a check for compilation)\n";
|
||||
return EXIT_SUCCESS;
|
||||
}
|
Reference in New Issue
Block a user