From a6a83b1921d6e3d40fcc11031d015d3b947c90ff Mon Sep 17 00:00:00 2001 From: tqchen Date: Sat, 12 Sep 2015 21:41:39 -0700 Subject: [PATCH] fix test --- scripts/travis_script.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/travis_script.sh b/scripts/travis_script.sh index 99d1771d1ac7..9f6fc9b159e6 100755 --- a/scripts/travis_script.sh +++ b/scripts/travis_script.sh @@ -55,7 +55,7 @@ if [ ${TASK} == "cpp_unittest" ]; then echo "USE_CUDA=0" >> config.mk make test || exit -1 export MXNET_ENGINE_TYPE=NaiveEngine - testsp/cpp/unittest || exit -1 + tests/cpp/unittest || exit -1 export MXNET_ENGINE_TYPE=ThreadedEngine tests/cpp/unittest || exit -1 fi