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/SQLiteRegionTest.cs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'OpenSim/Data/SQLite/Tests/SQLiteRegionTest.cs') diff --git a/OpenSim/Data/SQLite/Tests/SQLiteRegionTest.cs b/OpenSim/Data/SQLite/Tests/SQLiteRegionTest.cs index 652a53a..48f3cbb 100644 --- a/OpenSim/Data/SQLite/Tests/SQLiteRegionTest.cs +++ b/OpenSim/Data/SQLite/Tests/SQLiteRegionTest.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"; connect = "URI=file:" + file + ",version=3"; -- cgit v1.1