mirror of
https://github.com/facebookresearch/faiss.git
synced 2025-06-03 16:25:11 +08:00
16 lines
218 B
Bash
Executable File
16 lines
218 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PYTHON=${PYTHON:-"python"}
|
|
|
|
make
|
|
|
|
for t in test_*.py; do
|
|
PYTHONPATH=.. $PYTHON $t || exit 1
|
|
done
|
|
|
|
for t in test_*.cpp; do
|
|
if [ "$t" != "test_blas.cpp" ]; then
|
|
./${t%.*} || exit 1
|
|
fi
|
|
done
|