aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorAnkur Dave <ankurdave@gmail.com>2011-04-15 13:43:29 -0700
committerAnkur Dave <ankurdave@gmail.com>2011-05-03 15:40:31 -0700
commit1c8ca0ebe1537c8f424722294794a66ff123f132 (patch)
treef4375a4cbe417dc440d7bd0a2ecea458f8bddea0 /project
parentc5b3ea755ff8a69aa39dd6e46d57cbe9d5bcbcae (diff)
downloadspark-1c8ca0ebe1537c8f424722294794a66ff123f132.tar.gz
spark-1c8ca0ebe1537c8f424722294794a66ff123f132.tar.bz2
spark-1c8ca0ebe1537c8f424722294794a66ff123f132.zip
Add Bagel test suite
Note: This test suite currently fails for the same reason that the Spark Core test suite fails: Spark currently seems to have a bug where any test after the first one fails.
Diffstat (limited to 'project')
-rw-r--r--project/build/SparkProject.scala6
1 files changed, 5 insertions, 1 deletions
diff --git a/project/build/SparkProject.scala b/project/build/SparkProject.scala
index a6ee25bc3d..a6520d1f03 100644
--- a/project/build/SparkProject.scala
+++ b/project/build/SparkProject.scala
@@ -14,7 +14,7 @@ extends ParentProject(info) with IdeaProject
lazy val examples =
project("examples", "Spark Examples", new ExamplesProject(_), core)
- lazy val bagel = project("bagel", "Bagel", core)
+ lazy val bagel = project("bagel", "Bagel", new BagelProject(_), core)
class CoreProject(info: ProjectInfo)
extends DefaultProject(info) with Eclipsify with IdeaProject with DepJar with XmlTestReport
@@ -23,6 +23,10 @@ extends ParentProject(info) with IdeaProject
class ExamplesProject(info: ProjectInfo)
extends DefaultProject(info) with Eclipsify with IdeaProject
{}
+
+ class BagelProject(info: ProjectInfo)
+ extends DefaultProject(info) with DepJar with XmlTestReport
+ {}
}