diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Tests/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGeneratorTest.cs | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/OpenSim/Tests/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGeneratorTest.cs b/OpenSim/Tests/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGeneratorTest.cs index 3c4b9bc..ab8f472 100644 --- a/OpenSim/Tests/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGeneratorTest.cs +++ b/OpenSim/Tests/OpenSim/Region/ScriptEngine/Shared/CodeTools/CSCodeGeneratorTest.cs | |||
@@ -37,7 +37,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.CodeTools.Tests | |||
37 | /// Each test has some LSL code as input and C# code as expected output. | 37 | /// Each test has some LSL code as input and C# code as expected output. |
38 | /// The generated C# code is compared against the expected C# code. | 38 | /// The generated C# code is compared against the expected C# code. |
39 | /// </summary> | 39 | /// </summary> |
40 | [TestFixture] | 40 | //(TestFixture) |
41 | public class CSCodeGeneratorTest | 41 | public class CSCodeGeneratorTest |
42 | { | 42 | { |
43 | [Test] | 43 | [Test] |
@@ -663,8 +663,8 @@ default | |||
663 | public void default_event_touch_start(LSL_Types.LSLInteger num_detected) | 663 | public void default_event_touch_start(LSL_Types.LSLInteger num_detected) |
664 | { | 664 | { |
665 | LSL_Types.list l = new LSL_Types.list(); | 665 | LSL_Types.list l = new LSL_Types.list(); |
666 | LSL_Types.list m = new LSL_Types.list(1, two, ""three"", new LSL_Types.Vector3(4.0, 4.0, 4.0), 5 + 5); | 666 | LSL_Types.list m = new LSL_Types.list(new LSL_Types.LSLInteger(1), two, new LSL_Types.LSLString(""three""), new LSL_Types.Vector3(new LSL_Types.LSLFloat(4.0), new LSL_Types.LSLFloat(4.0), new LSL_Types.LSLFloat(4.0)), new LSL_Types.LSLInteger(5) + new LSL_Types.LSLInteger(5)); |
667 | llCallSomeFunc(1, llAnotherFunc(), new LSL_Types.list(1, 2, 3)); | 667 | llCallSomeFunc(new LSL_Types.LSLInteger(1), llAnotherFunc(), new LSL_Types.list(new LSL_Types.LSLInteger(1), new LSL_Types.LSLInteger(2), new LSL_Types.LSLInteger(3))); |
668 | } | 668 | } |
669 | "; | 669 | "; |
670 | 670 | ||
@@ -723,53 +723,53 @@ default | |||
723 | { | 723 | { |
724 | LSL_Types.LSLInteger x = new LSL_Types.LSLInteger(1); | 724 | LSL_Types.LSLInteger x = new LSL_Types.LSLInteger(1); |
725 | if (x) | 725 | if (x) |
726 | llSay(new LSL_Types.LSLInteger(0), ""Hello""); | 726 | llSay(new LSL_Types.LSLInteger(0), new LSL_Types.LSLString(""Hello"")); |
727 | if (1) | 727 | if (new LSL_Types.LSLInteger(1)) |
728 | { | 728 | { |
729 | llSay(new LSL_Types.LSLInteger(0), ""Hi""); | 729 | llSay(new LSL_Types.LSLInteger(0), new LSL_Types.LSLString(""Hi"")); |
730 | LSL_Types.LSLInteger r = new LSL_Types.LSLInteger(3); | 730 | LSL_Types.LSLInteger r = new LSL_Types.LSLInteger(3); |
731 | return ; | 731 | return ; |
732 | } | 732 | } |
733 | if (f(x)) | 733 | if (f(x)) |
734 | llSay(new LSL_Types.LSLInteger(0), ""f(x) is true""); | 734 | llSay(new LSL_Types.LSLInteger(0), new LSL_Types.LSLString(""f(x) is true"")); |
735 | else | 735 | else |
736 | llSay(new LSL_Types.LSLInteger(0), ""f(x) is false""); | 736 | llSay(new LSL_Types.LSLInteger(0), new LSL_Types.LSLString(""f(x) is false"")); |
737 | if (x + y) | 737 | if (x + y) |
738 | llSay(new LSL_Types.LSLInteger(0), ""x + y is true""); | 738 | llSay(new LSL_Types.LSLInteger(0), new LSL_Types.LSLString(""x + y is true"")); |
739 | else | 739 | else |
740 | if (y - x) | 740 | if (y - x) |
741 | llSay(new LSL_Types.LSLInteger(0), ""y - x is true""); | 741 | llSay(new LSL_Types.LSLInteger(0), new LSL_Types.LSLString(""y - x is true"")); |
742 | else | 742 | else |
743 | llSay(new LSL_Types.LSLInteger(0), ""Who needs x and y anyway?""); | 743 | llSay(new LSL_Types.LSLInteger(0), new LSL_Types.LSLString(""Who needs x and y anyway?"")); |
744 | if (x * y) | 744 | if (x * y) |
745 | llSay(new LSL_Types.LSLInteger(0), ""x * y is true""); | 745 | llSay(new LSL_Types.LSLInteger(0), new LSL_Types.LSLString(""x * y is true"")); |
746 | else | 746 | else |
747 | if (y / x) | 747 | if (y / x) |
748 | { | 748 | { |
749 | llSay(new LSL_Types.LSLInteger(0), ""uh-oh, y / x is true, exiting""); | 749 | llSay(new LSL_Types.LSLInteger(0), new LSL_Types.LSLString(""uh-oh, y / x is true, exiting"")); |
750 | return ; | 750 | return ; |
751 | } | 751 | } |
752 | else | 752 | else |
753 | llSay(new LSL_Types.LSLInteger(0), ""Who needs x and y anyway?""); | 753 | llSay(new LSL_Types.LSLInteger(0), new LSL_Types.LSLString(""Who needs x and y anyway?"")); |
754 | if (x % y) | 754 | if (x % y) |
755 | llSay(new LSL_Types.LSLInteger(0), ""x is true""); | 755 | llSay(new LSL_Types.LSLInteger(0), new LSL_Types.LSLString(""x is true"")); |
756 | else | 756 | else |
757 | if (y & x) | 757 | if (y & x) |
758 | llSay(new LSL_Types.LSLInteger(0), ""y is true""); | 758 | llSay(new LSL_Types.LSLInteger(0), new LSL_Types.LSLString(""y is true"")); |
759 | else | 759 | else |
760 | if (z | x) | 760 | if (z | x) |
761 | llSay(new LSL_Types.LSLInteger(0), ""z is true""); | 761 | llSay(new LSL_Types.LSLInteger(0), new LSL_Types.LSLString(""z is true"")); |
762 | else | 762 | else |
763 | if (a * (b + x)) | 763 | if (a * (b + x)) |
764 | llSay(new LSL_Types.LSLInteger(0), ""a is true""); | 764 | llSay(new LSL_Types.LSLInteger(0), new LSL_Types.LSLString(""a is true"")); |
765 | else | 765 | else |
766 | if (b) | 766 | if (b) |
767 | llSay(new LSL_Types.LSLInteger(0), ""b is true""); | 767 | llSay(new LSL_Types.LSLInteger(0), new LSL_Types.LSLString(""b is true"")); |
768 | else | 768 | else |
769 | if (v) | 769 | if (v) |
770 | llSay(new LSL_Types.LSLInteger(0), ""v is true""); | 770 | llSay(new LSL_Types.LSLInteger(0), new LSL_Types.LSLString(""v is true"")); |
771 | else | 771 | else |
772 | llSay(new LSL_Types.LSLInteger(0), ""Everything is lies!""); | 772 | llSay(new LSL_Types.LSLInteger(0), new LSL_Types.LSLString(""Everything is lies!"")); |
773 | } | 773 | } |
774 | "; | 774 | "; |
775 | 775 | ||