From 65dcfdf031cd6f355f5b71bb885e1dfcbf4d785b Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Wed, 8 Apr 2009 20:16:23 +0000 Subject: SQLite doesn't work on ppc64, so ignore these tests if we are on this platform --- OpenSim/Data/SQLite/Tests/SQLiteInventoryTest.cs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'OpenSim/Data/SQLite/Tests/SQLiteInventoryTest.cs') diff --git a/OpenSim/Data/SQLite/Tests/SQLiteInventoryTest.cs b/OpenSim/Data/SQLite/Tests/SQLiteInventoryTest.cs index 70903c3..ae360f1 100644 --- a/OpenSim/Data/SQLite/Tests/SQLiteInventoryTest.cs +++ b/OpenSim/Data/SQLite/Tests/SQLiteInventoryTest.cs @@ -40,6 +40,12 @@ namespace OpenSim.Data.SQLite.Tests [TestFixtureSetUp] public void Init() { + if (System.Environment.GetEnvironmentVariable("CPU") == "ppc64") + { + System.Console.WriteLine(System.Environment.GetEnvironmentVariable("CPU")); + Assert.Ignore(); + } + SuperInit(); file = Path.GetTempFileName() + ".db"; -- cgit v1.1