We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75a8b42 commit 007a300Copy full SHA for 007a300
src/tests/JIT/interpreter/InterpreterTester.cs
@@ -17,8 +17,7 @@ public class InterpreterTester
17
public static void RunTests()
18
{
19
string coreRoot = Environment.GetEnvironmentVariable("CORE_ROOT");
20
- string interpreterTesterDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
21
- string interpreterApp = Path.Combine(interpreterTesterDir, "Interpreter.dll");
+ string interpreterApp = Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "Interpreter.dll");
22
23
var startInfo = new ProcessStartInfo(Path.Combine(coreRoot, "corerun"), interpreterApp);
24
startInfo.EnvironmentVariables["DOTNET_Interpreter"] = "RunInterpreterTests";
0 commit comments