Klemens Böswirth
Klemens Böswirth
```diff diff --git a/scripts/jenkins/Jenkinsfile b/scripts/jenkins/Jenkinsfile index fbb23a3eb..e5dcf1e53 100644 --- a/scripts/jenkins/Jenkinsfile +++ b/scripts/jenkins/Jenkinsfile @@ -207,6 +207,10 @@ Logs: ${currentBuild.rawBuild.getLog(20).join('\n')} to: "[email protected]" } throw e +} finally { + stage("cleanup") { +...
Yes, the `goptsActive` check wasn't correct. But as I said in https://github.com/ElektraInitiative/libelektra/pull/4471#issuecomment-1255095972 the failing tests have existed in this form since before `gopts` (and `PROCGETSTORAGE`) was a thing. Also AFAICT...
@Eiskasten there are also quite a few tests in `new-backend` that are commented out or disabled. Some of them are tests for old data structures that aren't used anymore. In...
`test_spec` AFAICT that's actually a test for `ksLookup` (more specifically the `elektraLookupBySpec` part). `testmod_spec` that should be the main test for the actual functionality of `spec`. Tests for how `kdbGet`/`kdbSet`...
@Eiskasten I'll fix `testscr_check_doc` and `testscr_check_plugins` in #4484
Yes, you can remove all tests that are related to `split`, `trie` or one of the functions in `src/libs/elektra/mount.c`. In many cases the functions thy test still exist (e.g. all...
I personally, won't have the time. Since I'm still focusing on the decisions. When those are finished (whenever that may be), I might find time. However, there is not that...
> Maybe it is also possible that you require your favorite resolver via contract AFAIK this isn't possible right now. It would also go against the idea of separate backends/mountpoints....
> Here the question is "just" how to change Elektra default user: and system: paths at runtime, while keeping its regular behavior. Changing the paths at runtime is not really...
Like I said, if you want to change the paths that Elektra uses, it would be easiest if you compiled it yourself. There are CMake variables for the paths you...