From 4e2b9e208964bda733d75b26fc0cf480bd5635e9 Mon Sep 17 00:00:00 2001 From: Bruno da Silva Belo Date: Fri, 18 Oct 2019 11:40:33 -0300 Subject: [PATCH] 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 --- src/tests/efl_mono/Main.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/tests/efl_mono/Main.cs b/src/tests/efl_mono/Main.cs index 06add7edd2..b7b6276040 100644 --- a/src/tests/efl_mono/Main.cs +++ b/src/tests/efl_mono/Main.cs @@ -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;