Bug 427486 - tests imported from CMake do not respect ENVIRONMENT properties
Summary: tests imported from CMake do not respect ENVIRONMENT properties
Status: CONFIRMED
Alias: None
Product: kdevelop
Classification: Applications
Component: Build tools: CMake (show other bugs)
Version: git master
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: kdevelop-bugs-null
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-10-09 14:13 UTC by Rolf Eike Beer
Modified: 2020-10-12 09:22 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Rolf Eike Beer 2020-10-09 14:13:56 UTC
Brute-force example code to give some hints is here: https://invent.kde.org/dakon/kdevelop/-/tree/ctest-env

If one does this:

add_test(NAME test_six COMMAND four_test 3 WORKING_DIRECTORY "/foo")
set_property(TEST test_six PROPERTY ENVIRONMENT "foo=bar")

then running the code via ctest will result in getenv("foo") == "bar", which when I run the same test using the "Unit test" pane it will be getenv("foo") == NULL.