aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/Tests/LSL_TypesTestLSLFloat.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-09-08changes to Test directory structure per opensim-dev conversationSean Dague1-0/+0
2008-09-04complete rationalization of unit tests that we currently runSean Dague1-0/+0
2008-07-31-make ZERO_VECTOR and ZERO_ROTATION static readonly properties so they can beMike Mazur1-0/+21
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-31More LSL_Types implicit/explicit cast changes. Fix issue 1854.Mike Mazur1-27/+27
2008-07-28-copy LSL_Types tests from Common/ to Shared/Mike Mazur1-1/+0
-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 Mazur1-0/+15
-fix formatting -remove CompilerTest test since it seems to fail randomly
2008-07-24Refactor some tests.Mike Mazur1-297/+173
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-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-06-06Fixed a build problem with r5019 (Mikems patch)Johan Berntsson1-0/+0
2008-06-06Minor formatting cleanup.Jeff Ames1-14/+14
2008-06-06Update svn properties.Jeff Ames1-579/+579
2008-06-05Mantis#1451. Thank you kindly, mikem for additional Charles Krinke1-0/+579
tests for LSL types and strings.