Fix portability issue in Makefile

The == test operator is not defined by POSIX
diff --git a/tests/Makefile b/tests/Makefile
index 180da87..25b704a 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -433,7 +433,7 @@
 		RESULT=`$(CHECK_PRELOAD) ./$${i} | grep -v 'PASS$$' | grep -v -- '----' | grep -v '^$$'`;	\
 		PASSED=`echo $$RESULT |grep PASSED`; 								\
 		echo "   $$RESULT";													\
-		if [ "$$PASSED" = "" ];											\
+		if [ "x$$PASSED" = "x" ];											\
 		then																\
 			echo "**** Failed ***************";								\
 			RETURN=1;														\