aboutsummaryrefslogtreecommitdiffstats
path: root/meta/site/arm-linux
AgeCommit message (Expand)Author
2011-07-27siteinfo: Move (getpgrp|setpgrp|setgrent|*get{pwuid,grgid}) to common-libcTom Rini
2011-07-27siteinfo: Move general realloc/malloc values to common-$libcTom Rini
2011-07-27siteinfo: Move certain mysql entries to common-linuxTom Rini
2011-07-27siteinfo: Move certain samba entries to common-linuxTom Rini
2008-01-18site: merged with OEMarcin Juszkiewicz
2007-10-19site: sync with OEMarcin Juszkiewicz
2007-09-02site: Sync with OERichard Purdie
2007-05-28site: Move common arm entries to arm-common from arm-linuxRichard Purdie
2007-05-27site: Sync ARM changes with OE (creation of common ARM site file)Richard Purdie
2007-04-30va_copy exists in poky, and we also have a working memalignRoss Burton
2007-04-30Add some missing config variables which meant glib though our printf was crip...Ross Burton
2007-03-15Add entry for the iconv check in eds-dbusRoss Burton
2007-03-15arm-linux does support abstract socketsRoss Burton
2007-01-27Update gnome-vfs partially from OE, removing the krb hackRoss Burton
2006-12-24Very nasty hack for gnome-vfs, to force the krb5_config check to failRoss Burton
2006-12-12Add glib_cv_monotonic_clock for glib 2.12Ross Burton
2006-11-21Site file handling update: Instead of one site file per target, allow entries...Richard Purdie
2006-08-29Add ac_cv_sizeof_int_p, needed mysteriously suddenly by rxvt-unicodeMatthew Allum
2006-07-21Rename /openembedded/ -> /meta/Richard Purdie
p">(self.element_exists(selector), 'new custom image button should not show for builds which ' \ 'don\'t have any image recipes') def test_left_panel(self): """" Builds which succeed should have a left panel and a build summary """ self._get_build_dashboard(self.build1) left_panel = self.find_all('#nav') self.assertEqual(len(left_panel), 1) build_summary = self.find_all('[data-role="build-summary-heading"]') self.assertEqual(len(build_summary), 1) def test_failed_no_left_panel(self): """ Builds which fail should have no left panel and no build summary """ self._get_build_dashboard(self.build3) left_panel = self.find_all('#nav') self.assertEqual(len(left_panel), 0) build_summary = self.find_all('[data-role="build-summary-heading"]') self.assertEqual(len(build_summary), 0) def test_failed_shows_errors_and_warnings(self): """ Failed builds should still show error and warning messages """ self._get_build_dashboard(self.build3) errors = self.find_all('#errors div.alert-danger') self._check_for_log_message(errors, self.error_message) # expand the warnings area self.click('#warning-toggle') self.wait_until_visible('#warnings div.alert-warning') warnings = self.find_all('#warnings div.alert-warning') self._check_for_log_message(warnings, self.warning_message)