diff --git a/OpenSim/Region/Physics/OdePlugin/ODETestClass.cs b/OpenSim/Region/Physics/OdePlugin/ODETestClass.cs
index 6ee23dbaad..a269d31eb3 100644
--- a/OpenSim/Region/Physics/OdePlugin/ODETestClass.cs
+++ b/OpenSim/Region/Physics/OdePlugin/ODETestClass.cs
@@ -33,10 +33,11 @@ using OpenSim.Framework;
using OpenSim.Region.Physics.Manager;
using log4net;
using System.Reflection;
+using OpenSim.Tests.Common;
namespace OpenSim.Region.Physics.OdePlugin
{
- [TestFixture]
+ [IntegrationTest]
public class ODETestClass
{
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
diff --git a/OpenSim/Tests/Common/IntegrationTestAttribute.cs b/OpenSim/Tests/Common/IntegrationTestAttribute.cs
new file mode 100644
index 0000000000..c721710bcd
--- /dev/null
+++ b/OpenSim/Tests/Common/IntegrationTestAttribute.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace OpenSim.Tests.Common
+{
+ [AttributeUsage(AttributeTargets.All,
+ AllowMultiple = false,
+ Inherited = true)]
+ public class IntegrationTestAttribute : LongRunningAttribute
+ {
+ public IntegrationTestAttribute()
+ : base("Integration")
+ {
+ }
+ }
+}
diff --git a/prebuild.xml b/prebuild.xml
index 5272a89e00..ffe8bad1db 100644
--- a/prebuild.xml
+++ b/prebuild.xml
@@ -502,6 +502,7 @@
+