mirror of
https://github.com/Sei-Lisa/LSL-PyOptimizer
synced 2025-07-01 15:48:21 +00:00
This test suite has been in use for a long time now, in place of the obsolete and unmanageable testparser.py and testfuncs.py. It verifies the complete optimizer output to stdout and stderr, to ensure that the output matches the expectations. See unit_tests/README.txt for more info.
14 lines
311 B
Text
14 lines
311 B
Text
default{timer(){
|
|
|
|
list L = llDeleteSubList(llGetPhysicsMaterial(), 0, -1)
|
|
+ [3];
|
|
|
|
// this should produce (key)"3" -> can't be switched to llList2Key
|
|
key a = llList2String(L, 0);
|
|
|
|
// this should produce "" -> can't be switched to llList2String
|
|
string b = llList2Key(L, 0);
|
|
|
|
llParticleSystem([a,b]);
|
|
|
|
}}
|