2023-04-25 00:06:58 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
git submodule init && git submodule update
|
2023-11-09 02:58:33 +08:00
|
|
|
./waf configure -T release --sanitize=address,undefined --disable-warns --tests --prefix=out/ $* &&
|
2023-04-25 00:06:58 +08:00
|
|
|
./waf install &&
|
|
|
|
cd out &&
|
|
|
|
DYLD_LIBRARY_PATH=bin/ ./unittest || exit 1
|