Tested C# tests timeout #114
Answered
by
pdawyndt
Brechtvsk
asked this question in
Bug reports
-
I'm writing samples in C# and trying to test them with the universal judge (tested). The tests always fail giving a using System;
public class Program
{
public static void Main(string[] args)
{
string userName = Console.ReadLine();
System.Console.WriteLine("Hello, " + userName + "!");
}
} the test suite: namespace: Program
tabs:
- tab: "Testen"
testcases:
- stdin: "Jan"
stdout: "Hallo, Jan!"
- stdin: "Piet"
stdout: "Hallo, Piet!"
- stdin: "5236-hallo!"
stdout: "Hallo, 5236-hallo!!"
- stdin: "'wereld'"
stdout: "Hallo, 'wereld'!"
- stdin: '"wereld"'
stdout: 'Hallo, "wereld"!'
- stdin: " "
stdout: "Hallo, !" |
Beta Was this translation helpful? Give feedback.
Answered by
pdawyndt
Feb 19, 2025
Replies: 1 comment 1 reply
-
Can you try to increase the memory limit? |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Brechtvsk
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can you try to increase the memory limit?