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