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
P
Plasma Workspace
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
4
Issues
4
List
Boards
Labels
Service Desk
Milestones
Merge Requests
64
Merge Requests
64
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Plasma
Plasma Workspace
Commits
10c3a1a5
Commit
10c3a1a5
authored
Nov 02, 2017
by
David Faure
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move debugging tool for autostart from kinit to here, where autostart.* has moved.
parent
033afd29
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
67 additions
and
0 deletions
+67
-0
ksmserver/CMakeLists.txt
ksmserver/CMakeLists.txt
+1
-0
ksmserver/tests/CMakeLists.txt
ksmserver/tests/CMakeLists.txt
+9
-0
ksmserver/tests/autostarttest.cpp
ksmserver/tests/autostarttest.cpp
+57
-0
No files found.
ksmserver/CMakeLists.txt
View file @
10c3a1a5
...
...
@@ -8,6 +8,7 @@ configure_file(config-ksmserver.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-ksmse
include_directories
(
${
CMAKE_CURRENT_BINARY_DIR
}
)
add_subdirectory
(
logout-greeter
)
add_subdirectory
(
switchuser-greeter
)
add_subdirectory
(
tests
)
########### next target ###############
...
...
ksmserver/tests/CMakeLists.txt
0 → 100644
View file @
10c3a1a5
add_executable
(
autostart_test
autostarttest.cpp
../autostart.cpp
)
target_link_libraries
(
autostart_test
Qt5::Core
KF5::Service
)
ksmserver/tests/autostarttest.cpp
0 → 100644
View file @
10c3a1a5
/*
* This file is part of the KDE libraries
* Copyright (c) 2014 Vishesh Handa <me@vhanda.in>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License version 2 as published by the Free Software Foundation.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
**/
#include <QCoreApplication>
#include <QCommandLineParser>
#include <QDebug>
#include <QTextStream>
#include "../autostart.h"
int
main
(
int
argc
,
char
**
argv
)
{
QCoreApplication
app
(
argc
,
argv
);
QCommandLineParser
parser
;
parser
.
addPositionalArgument
(
QStringLiteral
(
"phase"
),
QStringLiteral
(
"autostart phase number"
));
parser
.
process
(
app
);
QStringList
args
=
parser
.
positionalArguments
();
if
(
args
.
size
()
!=
1
)
{
parser
.
showHelp
(
1
);
}
int
phase
=
args
.
first
().
toInt
();
AutoStart
autostart
;
autostart
.
setPhase
(
phase
);
autostart
.
loadAutoStartList
();
QTextStream
out
(
stdout
);
while
(
!
autostart
.
phaseDone
())
{
QString
service
=
autostart
.
startService
();
if
(
service
.
isEmpty
())
{
break
;
}
out
<<
service
<<
"
\n
"
;
}
return
0
;
}
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