mirror of
https://github.com/opencv/opencv.git
synced 2024-11-26 12:10:49 +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
|