aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Tests/LSL_TypesTestLSLInteger.cs
diff options
context:
space:
mode:
authorMelanie Thielker2008-09-28 19:58:54 +0000
committerMelanie Thielker2008-09-28 19:58:54 +0000
commit3012bfa2a2ff97cc18c02cba7b533cfa818dfee4 (patch)
treea836d34fea056528688ea4371fefe588a8c6327d /OpenSim/Region/ScriptEngine/Shared/Tests/LSL_TypesTestLSLInteger.cs
parentAdd some methods to allow modules so set client view options (diff)
downloadopensim-SC_OLD-3012bfa2a2ff97cc18c02cba7b533cfa818dfee4.zip
opensim-SC_OLD-3012bfa2a2ff97cc18c02cba7b533cfa818dfee4.tar.gz
opensim-SC_OLD-3012bfa2a2ff97cc18c02cba7b533cfa818dfee4.tar.bz2
opensim-SC_OLD-3012bfa2a2ff97cc18c02cba7b533cfa818dfee4.tar.xz
Mantis #1922
Thank you, idb, for a patch that addresses hex digits erroneously being recognized as valid and parsed in a decimal number
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Tests/LSL_TypesTestLSLInteger.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Tests/LSL_TypesTestLSLInteger.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Tests/LSL_TypesTestLSLInteger.cs b/OpenSim/Region/ScriptEngine/Shared/Tests/LSL_TypesTestLSLInteger.cs
index 957a3b6..1d3ffd5 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Tests/LSL_TypesTestLSLInteger.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Tests/LSL_TypesTestLSLInteger.cs
@@ -64,6 +64,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Tests
64 m_stringIntSet.Add("-99999999", -99999999); 64 m_stringIntSet.Add("-99999999", -99999999);
65 m_stringIntSet.Add("", 0); 65 m_stringIntSet.Add("", 0);
66 m_stringIntSet.Add("aa", 0); 66 m_stringIntSet.Add("aa", 0);
67 m_stringIntSet.Add("56foo", 56);
67 m_stringIntSet.Add("42", 42); 68 m_stringIntSet.Add("42", 42);
68 m_stringIntSet.Add("42 is the answer", 42); 69 m_stringIntSet.Add("42 is the answer", 42);
69 m_stringIntSet.Add(" 42", 42); 70 m_stringIntSet.Add(" 42", 42);