63b27b
diff -rup yajl-2.1.0.orig/test/api/run_tests.sh yajl-2.1.0.new/test/api/run_tests.sh
63b27b
--- yajl-2.1.0.orig/test/api/run_tests.sh	2014-03-19 04:58:29.000000000 +0000
63b27b
+++ yajl-2.1.0.new/test/api/run_tests.sh	2014-04-28 11:27:26.006405320 +0100
63b27b
@@ -5,7 +5,7 @@ echo Running api tests:
63b27b
 tests=0
63b27b
 passed=0
63b27b
 
63b27b
-for file in `ls`; do
63b27b
+for file in `ls ../../build/test/api`; do
63b27b
     [ ! -x $file -o -d $file ] && continue
63b27b
     tests=`expr 1 + $tests`
63b27b
     printf " test(%s): " $file
63b27b
diff -rup yajl-2.1.0.orig/test/parsing/run_tests.sh yajl-2.1.0.new/test/parsing/run_tests.sh
63b27b
--- yajl-2.1.0.orig/test/parsing/run_tests.sh	2014-03-19 04:58:29.000000000 +0000
63b27b
+++ yajl-2.1.0.new/test/parsing/run_tests.sh	2014-04-28 11:25:51.239025722 +0100
63b27b
@@ -16,11 +16,11 @@ fi
63b27b
 # find test binary on both platforms.  allow the caller to force a
63b27b
 # particular test binary (useful for non-cmake build systems).
63b27b
 if [ -z "$testBin" ]; then
63b27b
-    testBin="../build/test/parsing/Release/yajl_test.exe"
63b27b
+    testBin="../../build/test/parsing/Release/yajl_test.exe"
63b27b
     if [ ! -x $testBin ] ; then
63b27b
-        testBin="../build/test/parsing/Debug/yajl_test.exe"
63b27b
+        testBin="../../build/test/parsing/Debug/yajl_test.exe"
63b27b
         if [ ! -x $testBin ] ; then
63b27b
-            testBin="../build/test/parsing/yajl_test"
63b27b
+            testBin="../../build/test/parsing/yajl_test"
63b27b
             if [  ! -x $testBin ] ; then
63b27b
                 ${ECHO} "cannot execute test binary: '$testBin'"
63b27b
                 exit 1;