From 908138c90f7045d9ec8c44c673365daedcd417aa Mon Sep 17 00:00:00 2001 From: David Terei Date: Wed, 20 Jul 2011 14:53:40 -0700 Subject: [PATCH] Fix 'make test' command for new testsuite location --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 896566af6b4f..3325e88e406c 100644 --- a/Makefile +++ b/Makefile @@ -110,9 +110,9 @@ endif .PHONY: test test: - $(MAKE) -C testsuite/tests CLEANUP=1 OUTPUT_SUMMARY=../../../testsuite_summary.txt fast + $(MAKE) -C testsuite/tests CLEANUP=1 OUTPUT_SUMMARY=../../testsuite_summary.txt fast .PHONY: fulltest fulltest: - $(MAKE) -C testsuite/tests CLEANUP=1 OUTPUT_SUMMARY=../../../testsuite_summary.txt + $(MAKE) -C testsuite/tests CLEANUP=1 OUTPUT_SUMMARY=../../testsuite_summary.txt