main: Call init() in perf modules if it exists

This is meant to let perf tests initialize themselves earlier than they
would otherwise run.

This allows them to setup the necessary dependencies, e.g. create
test monitors or similar actions.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2623>
This commit is contained in:
Jonas Ådahl 2023-02-02 16:01:43 +01:00 committed by Marge Bot
parent 73e0f02b1d
commit d116256e83

View File

@ -314,6 +314,14 @@ function _initializeUI() {
});
}
let perfModule;
const perfModuleName = GLib.getenv('SHELL_PERF_MODULE');
if (perfModuleName) {
perfModule = eval(`imports.perf.${perfModuleName};`);
if (perfModule.init)
perfModule.init();
}
layoutManager.connect('startup-complete', () => {
if (actionMode == Shell.ActionMode.NONE)
actionMode = Shell.ActionMode.NORMAL;
@ -329,8 +337,7 @@ function _initializeUI() {
});
}
const perfModuleName = GLib.getenv('SHELL_PERF_MODULE');
if (!perfModuleName) {
if (!perfModule) {
let credentials = new Gio.Credentials();
if (credentials.get_unix_user() === 0) {
notify(
@ -347,10 +354,9 @@ function _initializeUI() {
LoginManager.registerSessionWithGDM();
if (perfModuleName) {
if (perfModule) {
let perfOutput = GLib.getenv("SHELL_PERF_OUTPUT");
let module = eval(`imports.perf.${perfModuleName};`);
Scripting.runPerfScript(module, perfOutput);
Scripting.runPerfScript(perfModule, perfOutput);
}
});
}