From 508737aba6cb5b21dd4cb72eb513b9e444bb0d7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Hunold?= Date: Sun, 6 Jul 2008 19:14:42 +0000 Subject: [PATCH] Fix: adjust to r40898: Fix: remove gui from usage-requirements of QtGui. [SVN r47140] --- v2/test/example_qt4.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/v2/test/example_qt4.py b/v2/test/example_qt4.py index c82a5d872..37e364157 100644 --- a/v2/test/example_qt4.py +++ b/v2/test/example_qt4.py @@ -13,14 +13,14 @@ t = Tester() t.set_tree("../example/qt/qt4/hello") t.run_build_system() -t.expect_addition(["bin/$toolset/debug/threading-multi/user-interface-gui/arrow"]) +t.expect_addition(["bin/$toolset/debug/threading-multi/arrow"]) t.set_tree("../example/qt/qt4/moccable-cpp") t.run_build_system() -t.expect_addition(["bin/$toolset/debug/threading-multi/user-interface-gui/main"]) +t.expect_addition(["bin/$toolset/debug/threading-multi/main"]) t.set_tree("../example/qt/qt4/uic") t.run_build_system() -t.expect_addition(["bin/$toolset/debug/threading-multi/user-interface-gui/hello"]) +t.expect_addition(["bin/$toolset/debug/threading-multi/hello"]) t.cleanup()