aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui
diff options
context:
space:
mode:
authorRenato Filho <renato.filho@openbossa.org>2010-07-23 13:48:47 -0300
committerRenato Filho <renato.filho@openbossa.org>2010-07-23 17:31:19 -0300
commit078408b8c25d73b900955b87e92dc50e9b19eb33 (patch)
tree05452cd06aa35c37a65fa659baa6c06ecb01c090 /tests/QtGui
parent3267accc9f8c96371302531fdb8d1c24271cfd44 (diff)
Avoid running x11 specific tests on others OS.
Diffstat (limited to 'tests/QtGui')
-rw-r--r--tests/QtGui/CMakeLists.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/QtGui/CMakeLists.txt b/tests/QtGui/CMakeLists.txt
index 5ebd75417..077dd1a9f 100644
--- a/tests/QtGui/CMakeLists.txt
+++ b/tests/QtGui/CMakeLists.txt
@@ -62,4 +62,8 @@ PYSIDE_TEST(timed_app_test.py)
PYSIDE_TEST(virtual_protected_inheritance_test.py)
PYSIDE_TEST(virtual_pure_override_test.py)
PYSIDE_TEST(wrong_return_test.py)
-PYSIDE_TEST(x11_symbols_test.py)
+
+
+if(X11)
+ PYSIDE_TEST(x11_symbols_test.py)
+endif()