aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/test
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:07 -0500
committerJacek Antonelli2008-08-15 23:45:07 -0500
commit8465910c79b8e746e04fd581cca2d60399e569b9 (patch)
treef43fec3e83c46e0d6190dca923d6fb268b52ffdd /linden/indra/test
parentSecond Life viewer sources 1.18.2.1 (diff)
downloadmeta-impy-8465910c79b8e746e04fd581cca2d60399e569b9.zip
meta-impy-8465910c79b8e746e04fd581cca2d60399e569b9.tar.gz
meta-impy-8465910c79b8e746e04fd581cca2d60399e569b9.tar.bz2
meta-impy-8465910c79b8e746e04fd581cca2d60399e569b9.tar.xz
Second Life viewer sources 1.18.3.2-RC
Diffstat (limited to 'linden/indra/test')
-rw-r--r--linden/indra/test/lltemplatemessagebuilder_tut.cpp2
-rw-r--r--linden/indra/test/message_tut.cpp2
-rw-r--r--linden/indra/test/test_llmanifest.py8
3 files changed, 8 insertions, 4 deletions
diff --git a/linden/indra/test/lltemplatemessagebuilder_tut.cpp b/linden/indra/test/lltemplatemessagebuilder_tut.cpp
index 5f58660..7aff445 100644
--- a/linden/indra/test/lltemplatemessagebuilder_tut.cpp
+++ b/linden/indra/test/lltemplatemessagebuilder_tut.cpp
@@ -36,7 +36,7 @@
36#include "llquaternion.h" 36#include "llquaternion.h"
37#include "lltemplatemessagebuilder.h" 37#include "lltemplatemessagebuilder.h"
38#include "lltemplatemessagereader.h" 38#include "lltemplatemessagereader.h"
39#include "llversion.h" 39#include "llversionserver.h"
40#include "message_prehash.h" 40#include "message_prehash.h"
41#include "u64.h" 41#include "u64.h"
42#include "v3dmath.h" 42#include "v3dmath.h"
diff --git a/linden/indra/test/message_tut.cpp b/linden/indra/test/message_tut.cpp
index 3425315..2a7bf45 100644
--- a/linden/indra/test/message_tut.cpp
+++ b/linden/indra/test/message_tut.cpp
@@ -32,7 +32,7 @@
32#include "lltut.h" 32#include "lltut.h"
33 33
34#include "llapr.h" 34#include "llapr.h"
35#include "llversion.h" 35#include "llversionserver.h"
36#include "message.h" 36#include "message.h"
37#include "message_prehash.h" 37#include "message_prehash.h"
38 38
diff --git a/linden/indra/test/test_llmanifest.py b/linden/indra/test/test_llmanifest.py
index 8bfca24..797d5ac 100644
--- a/linden/indra/test/test_llmanifest.py
+++ b/linden/indra/test/test_llmanifest.py
@@ -106,9 +106,13 @@ class TestLLManifest(unittest.TestCase):
106 106
107 def testruncommand(self): 107 def testruncommand(self):
108 self.assertEqual("Hello\n", self.m.run_command("echo Hello")) 108 self.assertEqual("Hello\n", self.m.run_command("echo Hello"))
109 def tmp_test(): 109 def exit_1_test():
110 self.m.run_command("exit 1")
111 self.assertRaises(RuntimeError, exit_1_test)
112 def not_found_test():
110 self.m.run_command("test_command_that_should_not_be_found") 113 self.m.run_command("test_command_that_should_not_be_found")
111 self.assertRaises(RuntimeError, tmp_test) 114 self.assertRaises(RuntimeError, not_found_test)
115
112 116
113 def testpathof(self): 117 def testpathof(self):
114 self.assertEqual(self.m.src_path_of("a"), "src/a") 118 self.assertEqual(self.m.src_path_of("a"), "src/a")