Improved Windows support

This commit is contained in:
2024-08-14 13:41:22 +02:00
parent 9d0077d1a4
commit 235188e457
3 changed files with 18 additions and 10 deletions

View File

@ -33,12 +33,12 @@ func TestExamples(t *testing.T) {
t.Run(test.Name+"/debug", func(t *testing.T) {
config.ConstantFold = false
run(t, directory, "debug", test.Name, test.Input, test.Output, test.ExitCode)
run(t, directory, "debug", test.Input, test.Output, test.ExitCode)
})
t.Run(test.Name+"/release", func(t *testing.T) {
config.ConstantFold = true
run(t, directory, "release", test.Name, test.Input, test.Output, test.ExitCode)
run(t, directory, "release", test.Input, test.Output, test.ExitCode)
})
}
}