Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Neon Components for OpenQA
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Sysadmin
Neon Components for OpenQA
Commits
078b7e37
Commit
078b7e37
authored
Jun 14, 2017
by
Harald Sitter
🎶
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
let's see what happens if we load another test in there
parent
24b3af7c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
45 additions
and
0 deletions
+45
-0
neon/main.pm
neon/main.pm
+1
-0
neon/tests/plasma_folder.pm
neon/tests/plasma_folder.pm
+44
-0
No files found.
neon/main.pm
View file @
078b7e37
...
...
@@ -38,6 +38,7 @@ require $distri;
testapi::
set_distribution
(
distribution_neon
->
new
());
autotest::
loadtest
"
tests/install_ubiquity.pm
";
autotest::
loadtest
"
tests/plasma_folder.pm
";
1
;
...
...
neon/tests/plasma_folder.pm
0 → 100644
View file @
078b7e37
# Copyright (C) 2016-2017 Harald Sitter <sitter@kde.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of
# the License or (at your option) version 3 or any later version
# accepted by the membership of KDE e.V. (or its successor approved
# by the membership of KDE e.V.), which shall act as a proxy
# defined in Section 14 of version 3 of the license.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
use
base
"
basetest
";
use
strict
;
use
testapi
;
sub
run
{
# wait for bootloader to appear
assert_screen
'
bootloader
',
16
;
# Eventually we should end up in sddm
assert_screen
"
sddm
",
16
;
# wait for the desktop to appear
assert_screen
'
desktop
',
16
;
wait_idle
;
# Make sure system has settled down a bit.
}
sub
test_flags
{
# without anything - rollback to 'lastgood' snapshot if failed
# 'fatal' - whole test suite is in danger if this fails
# 'milestone' - after this test succeeds, update 'lastgood'
# 'important' - if this fails, set the overall state to 'fail'
return
{
important
=>
1
};
}
1
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment