From de1aef949918af174315cb11835c4c93bed7711c Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Fri, 24 Apr 2009 12:40:42 +0000 Subject: silly C# not letting me use a File.Exists test for a directory. Don't you know a directory is just a special kind of file on Linux. --- OpenSim/Data/SQLite/Tests/SQLiteAssetTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim/Data/SQLite/Tests/SQLiteAssetTest.cs') diff --git a/OpenSim/Data/SQLite/Tests/SQLiteAssetTest.cs b/OpenSim/Data/SQLite/Tests/SQLiteAssetTest.cs index b99b248..ac47059 100644 --- a/OpenSim/Data/SQLite/Tests/SQLiteAssetTest.cs +++ b/OpenSim/Data/SQLite/Tests/SQLiteAssetTest.cs @@ -42,7 +42,7 @@ namespace OpenSim.Data.SQLite.Tests public void Init() { // SQLite doesn't work on power linux - if (File.Exists("/proc/ppc64")) + if (Directory.Exists("/proc/ppc64")) { Assert.Ignore(); } -- cgit v1.1