mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 11:40:44 +08:00
7 lines
148 B
Bash
7 lines
148 B
Bash
|
#! /bin/sh
|
||
|
if [ -n "${TESTDATA_DIR}" ] ; then
|
||
|
./opencv_test -d $TESTDATA_DIR/cv
|
||
|
else
|
||
|
./opencv_test -d $srcdir/../../opencv_extra/testdata/cv
|
||
|
fi
|