csharp: Setting ELM_ENGINE if it is none.

Reviewers: lauromoura, felipealmeida

Reviewed By: lauromoura

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Maniphest Tasks: T8322

Differential Revision: https://phab.enlightenment.org/D10442
This commit is contained in:
Bruno da Silva Belo 2019-10-18 11:40:33 -03:00 committed by Lauro Moura
parent db7348acf3
commit 4e2b9e2089
1 changed files with 3 additions and 0 deletions

View File

@ -15,6 +15,9 @@ class TestMain
static int Main(string[] args)
{
if (Environment.GetEnvironmentVariable("ELM_ENGINE") == null)
Environment.SetEnvironmentVariable("ELM_ENGINE", "buffer");
Efl.All.Init(Efl.Csharp.Components.Ui);
bool pass = true;