1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
--- cpp.orig/allTests.py 2011-06-15 21:43:58.000000000 +0200
+++ cpp/allTests.py 2012-03-04 20:14:52.000000000 +0100
@@ -25,6 +25,7 @@
# List of all basic tests.
#
tests = [
+
("IceUtil/condvar", ["once", "win32only"]),
("IceUtil/thread", ["once"]),
("IceUtil/unicode", ["once"]),
@@ -62,7 +63,7 @@
("Ice/servantLocator", ["core"]),
("Ice/interceptor", ["core"]),
("Ice/stringConverter", ["core"]),
- ("Ice/udp", ["core"]),
+ ("Ice/udp", ["core", "nofreebsdjail"]),
("Ice/defaultServant", ["core"]),
("Ice/defaultValue", ["core"]),
("Ice/invoke", ["core", "novc6"]),
@@ -106,8 +107,8 @@
#
if TestUtil.isWin32() or os.getuid() == 0:
tests += [
- ("IceUtil/priority", ["core", "nodarwin"]),
- ("Ice/threadPoolPriority", ["core", "nodarwin"])
+ ("IceUtil/priority", ["core", "nodarwin", "nofreebsd"]),
+ ("Ice/threadPoolPriority", ["core", "nodarwin", "nofreebsd"])
]
if __name__ == "__main__":
|