From c4120f1ab97f3bcb46b267723f340d0328ae2f48 Mon Sep 17 00:00:00 2001 From: samskivert Date: Fri, 27 Aug 2010 05:04:46 +0000 Subject: [PATCH] Ignore kooky file with @Test annotations that's not actually a test. git-svn-id: https://samskivert.googlecode.com/svn/trunk@2813 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- project/build/Samskivert.scala | 3 +++ 1 file changed, 3 insertions(+) diff --git a/project/build/Samskivert.scala b/project/build/Samskivert.scala index 134b689f..0adeb13d 100644 --- a/project/build/Samskivert.scala +++ b/project/build/Samskivert.scala @@ -4,5 +4,8 @@ class Samskivert (info :ProjectInfo) extends DefaultProject(info) { val junitInterface = "com.novocode" % "junit-interface" % "0.4" % "test->default" + override def testOptions = ExcludeTests("com.samskivert.util.IntSetTestBase" :: Nil) :: + super.testOptions.toList + System.setProperty("test_dir", "target/scala_2.8.0/test-resources") }