mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 17:55:48 +08:00
change power linux detection method, the previous method only worked
with interactive logins, not under panda.
This commit is contained in:
@@ -41,9 +41,9 @@ namespace OpenSim.Data.SQLite.Tests
|
||||
[TestFixtureSetUp]
|
||||
public void Init()
|
||||
{
|
||||
if (System.Environment.GetEnvironmentVariable("CPU") == "ppc64")
|
||||
// SQLite doesn't work on power linux
|
||||
if (File.Exists("/proc/ppc64"))
|
||||
{
|
||||
System.Console.WriteLine(System.Environment.GetEnvironmentVariable("CPU"));
|
||||
Assert.Ignore();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user