io/process: mask the "QProcess destroyed for running process" warn

This commit is contained in:
outfoxxed 2025-07-02 20:16:47 -07:00
parent f681e2016f
commit 86591f122d
Signed by untrusted user: outfoxxed
GPG key ID: 4C88A185FB89301E
5 changed files with 88 additions and 3 deletions

12
src/io/test/process.hpp Normal file
View file

@ -0,0 +1,12 @@
#pragma once
#include <qobject.h>
#include <qtmetamacros.h>
class TestProcess: public QObject {
Q_OBJECT;
private slots:
static void startAfterReload();
static void testExec();
};