aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite/Tests
diff options
context:
space:
mode:
authorSean Dague2009-08-06 14:01:36 -0400
committerSean Dague2009-08-06 14:01:36 -0400
commitb0e6d0fc01efc9762e9963b2b3ff5344063451e7 (patch)
treed0867510015dd30da6e80f2659b29623ba2cf76a /OpenSim/Data/SQLite/Tests
parentRecomment TestReplicateArchivePathToUserInventory() for now due to occasional... (diff)
downloadopensim-SC_OLD-b0e6d0fc01efc9762e9963b2b3ff5344063451e7.zip
opensim-SC_OLD-b0e6d0fc01efc9762e9963b2b3ff5344063451e7.tar.gz
opensim-SC_OLD-b0e6d0fc01efc9762e9963b2b3ff5344063451e7.tar.bz2
opensim-SC_OLD-b0e6d0fc01efc9762e9963b2b3ff5344063451e7.tar.xz
skip sqlite tests on z linux, as sqlite doesn't work right on the platform
Diffstat (limited to 'OpenSim/Data/SQLite/Tests')
-rw-r--r--OpenSim/Data/SQLite/Tests/SQLiteAssetTest.cs6
-rw-r--r--OpenSim/Data/SQLite/Tests/SQLiteEstateTest.cs4
-rw-r--r--OpenSim/Data/SQLite/Tests/SQLiteInventoryTest.cs4
-rw-r--r--OpenSim/Data/SQLite/Tests/SQLiteRegionTest.cs6
-rw-r--r--OpenSim/Data/SQLite/Tests/SQLiteUserTest.cs6
5 files changed, 13 insertions, 13 deletions
diff --git a/OpenSim/Data/SQLite/Tests/SQLiteAssetTest.cs b/OpenSim/Data/SQLite/Tests/SQLiteAssetTest.cs
index f030531..0c2f5df 100644
--- a/OpenSim/Data/SQLite/Tests/SQLiteAssetTest.cs
+++ b/OpenSim/Data/SQLite/Tests/SQLiteAssetTest.cs
@@ -41,8 +41,8 @@ namespace OpenSim.Data.SQLite.Tests
41 [TestFixtureSetUp] 41 [TestFixtureSetUp]
42 public void Init() 42 public void Init()
43 { 43 {
44 // SQLite doesn't work on power linux 44 // SQLite doesn't work on power or z linux
45 if (Directory.Exists("/proc/ppc64")) 45 if (Directory.Exists("/proc/ppc64") || Directory.Exists("/proc/dasd"))
46 { 46 {
47 Assert.Ignore(); 47 Assert.Ignore();
48 } 48 }
@@ -61,4 +61,4 @@ namespace OpenSim.Data.SQLite.Tests
61 File.Delete(file); 61 File.Delete(file);
62 } 62 }
63 } 63 }
64} \ No newline at end of file 64}
diff --git a/OpenSim/Data/SQLite/Tests/SQLiteEstateTest.cs b/OpenSim/Data/SQLite/Tests/SQLiteEstateTest.cs
index 1249e76..30f6641 100644
--- a/OpenSim/Data/SQLite/Tests/SQLiteEstateTest.cs
+++ b/OpenSim/Data/SQLite/Tests/SQLiteEstateTest.cs
@@ -41,8 +41,8 @@ namespace OpenSim.Data.SQLite.Tests
41 [TestFixtureSetUp] 41 [TestFixtureSetUp]
42 public void Init() 42 public void Init()
43 { 43 {
44 // SQLite doesn't work on power linux 44 // SQLite doesn't work on power or z linux
45 if (Directory.Exists("/proc/ppc64")) 45 if (Directory.Exists("/proc/ppc64") || Directory.Exists("/proc/dasd"))
46 { 46 {
47 Assert.Ignore(); 47 Assert.Ignore();
48 } 48 }
diff --git a/OpenSim/Data/SQLite/Tests/SQLiteInventoryTest.cs b/OpenSim/Data/SQLite/Tests/SQLiteInventoryTest.cs
index 17fa86c..98458a3 100644
--- a/OpenSim/Data/SQLite/Tests/SQLiteInventoryTest.cs
+++ b/OpenSim/Data/SQLite/Tests/SQLiteInventoryTest.cs
@@ -41,8 +41,8 @@ namespace OpenSim.Data.SQLite.Tests
41 [TestFixtureSetUp] 41 [TestFixtureSetUp]
42 public void Init() 42 public void Init()
43 { 43 {
44 // SQLite doesn't work on power linux 44 // SQLite doesn't work on power or z linux
45 if (Directory.Exists("/proc/ppc64")) 45 if (Directory.Exists("/proc/ppc64") || Directory.Exists("/proc/dasd"))
46 { 46 {
47 Assert.Ignore(); 47 Assert.Ignore();
48 } 48 }
diff --git a/OpenSim/Data/SQLite/Tests/SQLiteRegionTest.cs b/OpenSim/Data/SQLite/Tests/SQLiteRegionTest.cs
index 7a75808..abb97cf 100644
--- a/OpenSim/Data/SQLite/Tests/SQLiteRegionTest.cs
+++ b/OpenSim/Data/SQLite/Tests/SQLiteRegionTest.cs
@@ -41,8 +41,8 @@ namespace OpenSim.Data.SQLite.Tests
41 [TestFixtureSetUp] 41 [TestFixtureSetUp]
42 public void Init() 42 public void Init()
43 { 43 {
44 // SQLite doesn't work on power linux 44 // SQLite doesn't work on power or z linux
45 if (Directory.Exists("/proc/ppc64")) 45 if (Directory.Exists("/proc/ppc64") || Directory.Exists("/proc/dasd"))
46 { 46 {
47 Assert.Ignore(); 47 Assert.Ignore();
48 } 48 }
@@ -61,4 +61,4 @@ namespace OpenSim.Data.SQLite.Tests
61 File.Delete(file); 61 File.Delete(file);
62 } 62 }
63 } 63 }
64} \ No newline at end of file 64}
diff --git a/OpenSim/Data/SQLite/Tests/SQLiteUserTest.cs b/OpenSim/Data/SQLite/Tests/SQLiteUserTest.cs
index 52dac39..c9953c5 100644
--- a/OpenSim/Data/SQLite/Tests/SQLiteUserTest.cs
+++ b/OpenSim/Data/SQLite/Tests/SQLiteUserTest.cs
@@ -41,8 +41,8 @@ namespace OpenSim.Data.SQLite.Tests
41 [TestFixtureSetUp] 41 [TestFixtureSetUp]
42 public void Init() 42 public void Init()
43 { 43 {
44 // SQLite doesn't work on power linux 44 // SQLite doesn't work on power or z linux
45 if (Directory.Exists("/proc/ppc64")) 45 if (Directory.Exists("/proc/ppc64") || Directory.Exists("/proc/dasd"))
46 { 46 {
47 Assert.Ignore(); 47 Assert.Ignore();
48 } 48 }
@@ -61,4 +61,4 @@ namespace OpenSim.Data.SQLite.Tests
61 File.Delete(file); 61 File.Delete(file);
62 } 62 }
63 } 63 }
64} \ No newline at end of file 64}