aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-09-08Use older ExpectedException attribute format. Previously tests were failing ↵Mike Mazur1-2/+2
on NUnit <2.2.8.
2008-09-08Remove trailing whitespace.Mike Mazur1-25/+25
2008-09-07Convert TestStringsWithEscapedQuotesAndComments to use concatenated expected ↵Mike Mazur1-20/+9
string.
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2-18/+18
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
2008-09-06more unit test cross-platform compatibility tweaksDahlia Trimble1-214/+195
2008-09-06more unit test tweaks in the name of cross-platform compatibilityDahlia Trimble1-143/+137
2008-09-06Revert changes to TestStringsWithEscapedQuotesAndComments() so it will work ↵Dahlia Trimble1-9/+21
in Bamboo instead of windows
2008-09-06reformatted some of unit test standards to allow them to work when OpenSim ↵Dahlia Trimble1-174/+159
is built in Visual Studio
2008-09-05Mantis#2126. Thank you kindly, Ralphos for a patch that addresses:Charles Krinke1-0/+99
Types extracted from a LSL_Types.list have to be down-cast initially to the exact type of value type object that the Object actually is. This would make for very cumbersome, ugly code when extracting list parameter items in ll functions where a few implicit conversions should be applied such as key -> LSLString and LSLInteger -> LSLFloat (but not LSLFloat -> LSLInteger). This patch adds a set of GetXXXItem member functions to the LLS_Type.list class, where XXX is the name of the LSL_Type to be extracted: LSLFLoat, LSLInteger etc. All take a single, int parameter that is the item number to be extracted.
2008-09-04complete rationalization of unit tests that we currently runSean Dague12-0/+0
2008-09-04normalize naming for OpenSim.Tests.Framework.dllSean Dague1-0/+0
2008-09-03Mantis #2112Melanie Thielker2-9/+90
Thannk you, ralphos, for a patch to clean up list item type handling and add a missing explicit cast in Shared/
2008-09-02Fix and reactivate the unit tests on the XEngineMelanie Thielker1-103/+102
2008-09-02Temporarily disable the unit tests for Shared/ until they can be updated.Melanie Thielker1-21/+21
2008-09-02First batch of the unit test changes for the new constants semanticsMelanie Thielker1-89/+89
in XEngine. This turned out to be a lot of work to catch up.
2008-08-20Adding unit test for issue 2006, though it's commented out as those compilerMike Mazur1-1/+34
tests tend to tank on our continuous build server.
2008-08-18Formatting cleanup.Jeff Ames1-1/+1
2008-08-16* minor: rip out userserver stress project which never got filled outJustin Clarke Casey1-45/+0
2008-08-07Minor formatting cleanup.Jeff Ames1-8/+8
2008-07-31Thanks, M. Igarashi & nlin, for a patch that implements unary minus operatorMike Mazur1-2/+9
for Vector3 type. Fix issue 1872.
2008-07-31Thanks, sempuki, for a patch that moves all Grid Server's plugins toMike Mazur1-1/+1
PluginLoader. Fix issue 1871.
2008-07-31Allow the list hack from issue 1863 to compile, however its behavior isMike Mazur1-0/+25
different than in SL. See http://opensimulator.org/mantis/view.php?id=1863 for details.
2008-07-31-make ZERO_VECTOR and ZERO_ROTATION static readonly properties so they can beMike Mazur6-0/+126
used in scripts -cast from bool to LSL{Integer,Float,String} so functions such as `integer isZero(integer x) { return (x == 0); }` work -progress on issue 1863
2008-07-31Allow assignments in if/while/do-while control statements. Fix issue 1862.Mike Mazur1-0/+68
2008-07-31Fix issue 1860; exception thrown in the parser on if/if-else/for/while/do-whileMike Mazur1-0/+125
statements with no body.
2008-07-31More LSL_Types implicit/explicit cast changes. Fix issue 1854.Mike Mazur2-54/+54
2008-07-28When casting strings to int, use double.Parse() as strings may be floats. WithMike Mazur2-2/+84
this commit, issue 1822 should be fixed.
2008-07-28-implement LSLString -> Quaternion explicit castMike Mazur3-0/+105
-sync Shared/LSL_Types.cs with Common/LSL_Types.cs -get the test script in issue 1822 to compile
2008-07-28Adding explicit cast from LSLFloat to LSLInteger. Work on issue 1822.Mike Mazur1-0/+71
2008-07-28-copy LSL_Types tests from Common/ to Shared/Mike Mazur5-1/+823
-fix some whitespace/formatting
2008-07-27Implement LSLFloat {+,-,*,/} LSLFloat operations. Fix issues 1532, 1701, 1824 &Mike Mazur1-0/+63
1832.
2008-07-25Add casts from integer to float. Fix issue 1822.Mike Mazur1-1/+31
2008-07-25-add test for newly introduced cast operators (issue 1818)Mike Mazur2-1/+16
-fix formatting -remove CompilerTest test since it seems to fail randomly
2008-07-24Update svn properties. Minor formatting cleanup.Jeff Ames1-7/+7
2008-07-24Refactor some tests.Mike Mazur3-344/+206
2008-07-24Replace implicit casts from LSLFloat to int and uint which were removed inMike Mazur1-2/+2
r5487. Also put the unit tests back for Bamboo to execute them, let's see how this goes.
2008-07-23First version of position mapping between LSL <-> C# implemented.Mike Mazur2-3/+123
2008-07-19Update svn properties. Fix some inconsistent newlines.Jeff Ames1-62/+62
2008-07-16Mantis#1755. Thank you kindly, Matth for a patch that solves:Charles Krinke1-2/+2
When using math operators +,-,*,/ in an LSL script with an LSLFloat and an integer literal the wrong result is returned. This patch adds operators to the LSLFloat type to handle this case.
2008-07-16Mantis#1746. Thank you kindly, nlin for pointing out thatCharles Krinke1-0/+62
I needed to apply the patch a little better then last night for: Dot product operator in LSL_Types.cs incorrectly returns a component-wise vector multiplication; it should return a scalar dot product. Thanks to M. Igarashi for the patch.
2008-07-14Mantis#1728. Thank you kindly, Mikem for a patch that solves:Charles Krinke1-0/+35
The compiler was missing grammar rules for += etc. operators on vector.member variables, which the attached patch implements.
2008-07-12Patch #9142 (No mantis)Melanie Thielker1-68/+68
Add a config option to OpenSim.ini to select between script compilers in the XEngine without recompile. Set UseNewCompiler=true in OpenSim.ini and try it out. Creates the ICodeConverter interface and adapts the new compiler to it.
2008-07-11Thanks Mike for another LSL compiler patch which fixes a bug where 'vector ↵Johan Berntsson1-1/+59
v=<0, 0, -0.5>' caused a syntax error, and implements multiple assignments in one line (x = y = 3;)
2008-07-10Patch from Mike: errors from the LSL/C# compilers are now reported to the ↵Johan Berntsson1-0/+31
user in-world
2008-07-08Patch from Mike: added unit tests for the LSL compilerJohan Berntsson1-0/+1303
2008-06-09Update svn properties. Formatting cleanup.Jeff Ames1-101/+101
2008-06-09Mantis#1469. Thank you kindly, Mikem for a patch that addresses:Charles Krinke1-0/+101
Currently LSL code such as below does not compile on OpenSim, but compiles fine in Second Life: list mylist = []; mylist += [1, 2, 3]; mylist += "four"; list newlist = mylist + 5.0; The problem is that the LSL_Types.list class does not have an operator for adding a string to a list. I am including a patch which implements adding a string, integer or float to a list. I am also including tests. The file LSL_TypesTestList.cs belongs in OpenSim/Tests/OpenSim/Region/ScriptEngine/Common/.
2008-06-06Fixed a build problem with r5019 (Mikems patch)Johan Berntsson2-0/+0
2008-06-06Minor formatting cleanup.Jeff Ames2-16/+16
2008-06-06Update svn properties.Jeff Ames2-691/+691