13 lines
291 B
Lua
13 lines
291 B
Lua
-- This script runs an infinite loop
|
|
-- It should be stopped by the instruction limit hook
|
|
|
|
local count = 0
|
|
|
|
while true do
|
|
count = count + 1
|
|
-- This loop should be interrupted by instruction hook
|
|
end
|
|
|
|
-- Should never reach here
|
|
error("FAIL: CPU limit not enforced - loop completed")
|