remove the old non-parallel test system.  'make' in clang/test now runs
the tests in parallel.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49290 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Makefile b/Makefile
index 06eeeae..6d20df8 100644
--- a/Makefile
+++ b/Makefile
@@ -4,12 +4,12 @@
 include $(LEVEL)/Makefile.common
 
 test::
-	@ $(MAKE) -C test -f Makefile.parallel
+	@ $(MAKE) -C test 
 
 report::
-	@ $(MAKE) -C test -f Makefile.parallel report
+	@ $(MAKE) -C test report
 
 clean::
-	@ $(MAKE) -C test -f Makefile.parallel clean
+	@ $(MAKE) -C test clean
 
 .PHONY: test report clean