summaryrefslogtreecommitdiff
path: root/devel/ice/files/patch-cpp-allTests.py
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2012-03-24 15:57:39 +0000
committerMartin Wilke <miwi@FreeBSD.org>2012-03-24 15:57:39 +0000
commitccecfeab22539d9ad1268f4eaf3383ce380b7ae0 (patch)
tree3770ac1ea6c0cac0b96bda09ec58fe0bd6565b4b /devel/ice/files/patch-cpp-allTests.py
parentFix formatting so that "make tidy" passes (diff)
- Fix build with gcc 4.7
- Add support for clang PR: 165702 Submitted by: Michael Gmelin <freebsd@grem.de> (maintainer) Feature safe: yes
Notes
Notes: svn path=/head/; revision=293741
Diffstat (limited to 'devel/ice/files/patch-cpp-allTests.py')
-rw-r--r--devel/ice/files/patch-cpp-allTests.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/devel/ice/files/patch-cpp-allTests.py b/devel/ice/files/patch-cpp-allTests.py
new file mode 100644
index 000000000000..b65224382909
--- /dev/null
+++ b/devel/ice/files/patch-cpp-allTests.py
@@ -0,0 +1,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__":