From 944c9f4f7f30d733160283265ef575dd765aa770 Mon Sep 17 00:00:00 2001 From: Rokas Kupstys Date: Sun, 10 Dec 2017 15:22:33 +0200 Subject: [PATCH] Enable debug information generation for all tests. --- src/Generator.Tests/GeneratorTest.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Generator.Tests/GeneratorTest.cs b/src/Generator.Tests/GeneratorTest.cs index d77bc7ae..f882178f 100644 --- a/src/Generator.Tests/GeneratorTest.cs +++ b/src/Generator.Tests/GeneratorTest.cs @@ -28,6 +28,7 @@ namespace CppSharp.Utils options.GeneratorKind = kind; options.OutputDir = Path.Combine(GetOutputDirectory(), "gen", name); options.Quiet = true; + options.GenerateDebugOutput = true; var testModule = options.AddModule(name); testModule.SharedLibraryName = $"{name}.Native";