LSL-PyOptimizer/unit_tests/regression.suite/fixed-b64.lsl

13 lines
396 B
Text

// Some Base64 functions used to return garbage, now they no longer do
default
{
timer()
{
llSetPrimitiveParams( // we need a function that causes side effects,
// so that it isn't optimized out
[ llXorBase64StringsCorrect("++++", "?")
, llXorBase64("++++", "?")
, llBase64ToInteger("ABC")
]);
}
}