ci: Fixed tests
authorEd Bartosh <eduard.bartosh@intel.com>
Fri, 20 Jul 2012 07:23:50 +0000 (10:23 +0300)
committerEd Bartosh <eduard.bartosh@intel.com>
Wed, 25 Jul 2012 10:19:52 +0000 (13:19 +0300)
Change-Id: I48950a36c34cdad17d56741db6d2ad7c5eef0d33

.gbs.conf [new file with mode: 0644]
tests/01_test_help.py

diff --git a/.gbs.conf b/.gbs.conf
new file mode 100644 (file)
index 0000000..7ea5495
--- /dev/null
+++ b/.gbs.conf
@@ -0,0 +1,24 @@
+[general]
+; general settings
+tmpdir = /var/tmp
+editor = 
+
+[remotebuild]
+; settings for build subcommand
+build_server = https://api.tizen.org
+user = test
+passwdx = QlpoOTFBWSZTWTOLz6wAAAEBgAIADAAgACGYGYQYXckU4UJAzi8+sA==
+
+[build]
+build_cmd = /usr/bin/build
+build_root = /var/tmp/build-root-gbs
+distconf = /usr/share/gbs/tizen-1.0.conf
+
+; optional, repos definitions
+#repo1.url=
+#repo1.user=
+#repo1.passwd=
+; one more repo
+#repo2.url=
+#repo2.user=
+#repo2.passwd=
index c382863780ee589437e9855dc6d1863109651226..8d665de58f11d8bf752b71eef437cd72631e36a5 100644 (file)
@@ -9,7 +9,7 @@ class TestHelp(unittest.TestCase):
     """Test help output of gbs commands"""
 
     def testSubCommandHelp(self):
-        for prog in [ "build", "localbuild", "getconfig"]:
+        for prog in [ "build", "remotebuild"]:
             ret = os.system("gbs help %s > /dev/null"  % prog)
             self.assertEqual(ret, 0)