Files
turso/sqlite3/tests/main.c
Pekka Enberg f5cc3a08f0 Initial pass on SQLite C ABI
This adds initial SQLite C ABI compatibility to Limbo to make sure we
drive the Rust API in the right way that allows us to implement SQLite
semantics.
2024-05-08 07:05:56 -03:00

17 lines
319 B
C

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();
int main(int argc, char *argv[])
{
test_open_misuse();
test_open_not_found();
test_open_existing();
test_close();
test_prepare_misuse();
return 0;
}