Commit 2ee147f4 authored by Nick Craver's avatar Nick Craver

Move PurgeLuaScriptOnFinalize to Long-Running

It forces GC which can cause a pause...move it out of the normal test run.
parent 1b60d3b2
...@@ -746,7 +746,7 @@ private static void _PurgeLuaScriptOnFinalize(string script) ...@@ -746,7 +746,7 @@ private static void _PurgeLuaScriptOnFinalize(string script)
Assert.Equal(1, LuaScript.GetCachedScriptCount()); Assert.Equal(1, LuaScript.GetCachedScriptCount());
} }
[Fact] [FactLongRunning]
public void PurgeLuaScriptOnFinalize() public void PurgeLuaScriptOnFinalize()
{ {
const string Script = "redis.call('set', @PurgeLuaScriptOnFinalizeKey, @PurgeLuaScriptOnFinalizeValue)"; const string Script = "redis.call('set', @PurgeLuaScriptOnFinalizeKey, @PurgeLuaScriptOnFinalizeValue)";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment