Move Qt test to manual suite wip
authoryiluzhu
Tue, 29 Dec 2009 15:47:35 +0000
branchwip
changeset 104 0d3b07196a45
parent 103 ea6129a5c67c
child 105 d4f6f170ebe2
Move Qt test to manual suite
sbsv2/raptor/test/manual_suite/qt.py
sbsv2/raptor/test/manual_suite/test_resources/qt/helloworld.cpp
sbsv2/raptor/test/manual_suite/test_resources/qt/helloworld.pro
sbsv2/raptor/test/smoke_suite/qt.py
sbsv2/raptor/test/smoke_suite/test_resources/qt/helloworld.cpp
sbsv2/raptor/test/smoke_suite/test_resources/qt/qt.pro
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sbsv2/raptor/test/manual_suite/qt.py	Tue Dec 29 15:47:35 2009 +0000
@@ -0,0 +1,55 @@
+#
+# Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+# All rights reserved.
+# This component and the accompanying materials are made available
+# under the terms of the License "Eclipse Public License v1.0"
+# which accompanies this distribution, and is available
+# at the URL "http://www.eclipse.org/legal/epl-v10.html".
+#
+# Initial Contributors:
+# Nokia Corporation - initial contribution.
+#
+# Contributors:
+#
+# Description: 
+#
+
+from raptor_tests import SmokeTest
+
+def run():
+	t = SmokeTest()
+
+	t.description = "Ensure Raptor builds Qt applications successfully"	
+
+	t.id = "00xx"
+	t.name = "qt_apps"
+	t.command = "cd manual_suite/test_resources/qt && qmake -spec symbian-sbsv2 && sbs"
+	t.targets = [
+			"$(SBS_HOME)/test/manual_suite/test_resources/qt/bld.inf",
+			"$(SBS_HOME)/test/manual_suite/test_resources/qt/helloworld.loc",
+			"$(SBS_HOME)/test/manual_suite/test_resources/qt/helloworld.rss",
+			"$(SBS_HOME)/test/manual_suite/test_resources/qt/helloworld_reg.rss",
+			"$(SBS_HOME)/test/manual_suite/test_resources/qt/helloworld_template.pkg",
+			"$(SBS_HOME)/test/manual_suite/test_resources/qt/Makefile",
+			"$(EPOCROOT)/epoc32/release/armv5/udeb/helloworld.exe",
+			"$(EPOCROOT)/epoc32/release/armv5/udeb/helloworld.exe.map",
+			"$(EPOCROOT)/epoc32/release/armv5/urel/helloworld.exe",
+			"$(EPOCROOT)/epoc32/release/armv5/urel/helloworld.exe.map",
+			"$(EPOCROOT)/epoc32/release/winscw/udeb/helloworld.exe",
+			"$(EPOCROOT)/epoc32/release/winscw/urel/helloworld.exe",
+			"$(EPOCROOT)/epoc32/release/winscw/urel/helloworld.exe.map"
+		]
+	t.addbuildtargets('manual_suite/test_resources/qt/bld.inf', [
+		"helloworld_exe/armv5/udeb/helloworld.o",
+		"helloworld_exe/armv5/udeb/helloworld.o.d",
+		"helloworld_exe/armv5/urel/helloworld.o",
+		"helloworld_exe/armv5/urel/helloworld.o.d",
+		"helloworld_exe/winscw/udeb/helloworld.o",
+		"helloworld_exe/winscw/udeb/helloworld.o.d",	
+		"helloworld_exe/winscw/urel/helloworld.o",
+		"helloworld_exe/winscw/urel/helloworld.o.d"
+	])
+	t.run("windows")
+
+	return t
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sbsv2/raptor/test/manual_suite/test_resources/qt/helloworld.cpp	Tue Dec 29 15:47:35 2009 +0000
@@ -0,0 +1,13 @@
+#include <QApplication>
+#include <QPushButton>
+
+int main(int argc, char *argv[])
+{
+    QApplication app(argc, argv);
+
+    QPushButton hello("Hello world!");
+    hello.resize(100, 30);
+
+    hello.show();
+    return app.exec();
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sbsv2/raptor/test/manual_suite/test_resources/qt/helloworld.pro	Tue Dec 29 15:47:35 2009 +0000
@@ -0,0 +1,8 @@
+
+TEMPLATE = app
+TARGET = 
+DEPENDPATH += .
+INCLUDEPATH += .
+
+# Input
+SOURCES += helloworld.cpp
--- a/sbsv2/raptor/test/smoke_suite/qt.py	Tue Dec 22 15:37:16 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,57 +0,0 @@
-#
-# Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of the License "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description: 
-#
-
-from raptor_tests import SmokeTest
-
-def run():
-	t = SmokeTest()
-
-	t.description = "Ensure Raptor builds Qt applications successfully"	
-
-	t.id = "00xx"
-	t.name = "qt_apps"
-	t.command = "cd smoke_suite/test_resources/qt && $(EPOCROOT)/epoc32/tools/qmake -spec symbian-sbsv2 && sbs -b bld.inf"
-	t.targets = [
-			"$(SBS_HOME)/test/smoke_suite/test_resources/qt/bld.inf",
-			"$(SBS_HOME)/test/smoke_suite/test_resources/qt/qt_0xEe136753.mmp",
-			"$(SBS_HOME)/test/smoke_suite/test_resources/qt/qt.loc",
-			"$(SBS_HOME)/test/smoke_suite/test_resources/qt/qt.rss",
-			"$(SBS_HOME)/test/smoke_suite/test_resources/qt/qt_reg.rss",
-			"$(SBS_HOME)/test/smoke_suite/test_resources/qt/qt_template.pkg",
-			"$(SBS_HOME)/test/smoke_suite/test_resources/qt/Makefile",
-			"$(EPOCROOT)/epoc32/release/armv5/udeb/qt.exe",
-			"$(EPOCROOT)/epoc32/release/armv5/udeb/qt.exe.map",
-			"$(EPOCROOT)/epoc32/release/armv5/urel/qt.exe",
-			"$(EPOCROOT)/epoc32/release/armv5/urel/qt.exe.map",
-			"$(EPOCROOT)/epoc32/release/winscw/udeb/qt.exe",
-			"$(EPOCROOT)/epoc32/release/winscw/urel/qt.exe",
-			"$(EPOCROOT)/epoc32/release/winscw/urel/qt.exe.map"
-		]
-	t.addbuildtargets('smoke_suite/test_resources/qt/bld.inf', [
-		"qt_exe/armv5/udeb/helloworld.o",
-		"qt_exe/armv5/udeb/helloworld.o.d",
-		"qt_exe/armv5/urel/helloworld.o",
-		"qt_exe/armv5/urel/helloworld.o.d",
-		"qt_exe/winscw/udeb/helloworld.o",
-		"qt_exe/winscw/udeb/helloworld.o.d",	
-		"qt_exe/winscw/urel/helloworld.o",
-		"qt_exe/winscw/urel/helloworld.o.d"
-	])
-	t.run("windows")
-
-	return t
-
-
--- a/sbsv2/raptor/test/smoke_suite/test_resources/qt/helloworld.cpp	Tue Dec 22 15:37:16 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-#include <QApplication>
-#include <QPushButton>
-
-int main(int argc, char *argv[])
-{
-    QApplication app(argc, argv);
-
-    QPushButton hello("Hello world!");
-    hello.resize(100, 30);
-
-    hello.show();
-    return app.exec();
-}
--- a/sbsv2/raptor/test/smoke_suite/test_resources/qt/qt.pro	Tue Dec 22 15:37:16 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,11 +0,0 @@
-######################################################################
-# Automatically generated by qmake (2.01a) Tue Dec 22 10:31:36 2009
-######################################################################
-
-TEMPLATE = app
-TARGET = 
-DEPENDPATH += .
-INCLUDEPATH += .
-
-# Input
-SOURCES += helloworld.cpp