mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-24 11:34:21 +01:00
25 lines
559 B
C
25 lines
559 B
C
extern void test_libversion();
|
|
extern void test_libversion_number();
|
|
extern void test_open_misuse();
|
|
extern void test_open_not_found();
|
|
extern void test_open_existing();
|
|
extern void test_close();
|
|
extern void test_prepare_misuse();
|
|
extern void test_wal_checkpoint();
|
|
extern void test_wal_checkpoint_v2();
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
test_libversion();
|
|
test_libversion_number();
|
|
test_open_misuse();
|
|
test_open_not_found();
|
|
test_open_existing();
|
|
test_close();
|
|
test_prepare_misuse();
|
|
test_wal_checkpoint();
|
|
test_wal_checkpoint_v2();
|
|
|
|
return 0;
|
|
}
|