From 44f83924509226cc753cef052bbc817c1a24f5e7 Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Fri, 20 Jan 2023 15:13:21 +0200 Subject: [PATCH] - Ren-enabled tests for multiple files --- source/tlang/compiler/compiler.d | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/source/tlang/compiler/compiler.d b/source/tlang/compiler/compiler.d index 4b24f757..fc1e5303 100644 --- a/source/tlang/compiler/compiler.d +++ b/source/tlang/compiler/compiler.d @@ -171,16 +171,16 @@ unittest // FIXME: Crashes and I think because too fast or actually bad state? Maybe something is not being // cleared, I believe this may be what is happening // ... see issue #88 - // string[] testFiles = ["source/tlang/testing/simple_functions.t", - // "source/tlang/testing/simple_while.t", - // "source/tlang/testing/simple_for_loops.t", - // "source/tlang/testing/simple_cast.t", - // "source/tlang/testing/simple_conditionals.t", - // "source/tlang/testing/nested_conditionals.t", - // "source/tlang/testing/simple_discard.t" - // ]; - // foreach(string testFile; testFiles) - // { - // beginCompilation([testFile]); - // } + string[] testFiles = ["source/tlang/testing/simple_functions.t", + "source/tlang/testing/simple_while.t", + "source/tlang/testing/simple_for_loops.t", + "source/tlang/testing/simple_cast.t", + "source/tlang/testing/simple_conditionals.t", + "source/tlang/testing/nested_conditionals.t", + "source/tlang/testing/simple_discard.t" + ]; + foreach(string testFile; testFiles) + { + beginCompilation([testFile]); + } } \ No newline at end of file