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