Files
turso/Makefile
Pekka Enberg 94c827d5ae First pass on compatibility tests
With some help from GPT, add a TCL script that has similar syntax as
some of the SQLite source tree tests.
2024-06-19 16:11:55 +03:00

9 lines
162 B
Makefile

all:
cargo build
cargo build --package limbo-wasm --target wasm32-wasi
.PHONY: all
test: all
SQLITE_EXEC=./target/debug/limbo ./testing/all.test
.PHONY: test