Tests: Enable CommentAttributes in TestRunner

This commit is contained in:
Katy Coe
2019-11-16 22:15:41 +01:00
parent 0afb5f6172
commit 80d168a2de

View File

@@ -54,8 +54,12 @@ namespace Il2CppInspector
// Dump each image in the binary separately
int i = 0;
foreach (var il2cpp in inspectors)
new Il2CppCSharpDumper(new Il2CppModel(il2cpp)) {ExcludedNamespaces = excludedNamespaces, SuppressGenerated = true, SuppressMetadata = false}
.WriteSingleFile(testPath + @"\test-result" + (i++ > 0 ? "-" + (i - 1) : "") + ".cs");
new Il2CppCSharpDumper(new Il2CppModel(il2cpp)) {
ExcludedNamespaces = excludedNamespaces,
SuppressGenerated = true,
SuppressMetadata = false,
CommentAttributes = true
}.WriteSingleFile(testPath + @"\test-result" + (i++ > 0 ? "-" + (i - 1) : "") + ".cs");
// Compare test result with expected result
for (i = 0; i < inspectors.Count; i++) {