From: Jonathan Rajotte Date: Tue, 30 Mar 2021 01:38:54 +0000 (-0400) Subject: Fix: test: start-stop trigger: test execution is invalid X-Git-Tag: v2.13.0-rc1~103 X-Git-Url: http://git.lttng.org./?a=commitdiff_plain;h=7d59def241ece2d8d1c77ecce46431019b51a494;hp=7d59def241ece2d8d1c77ecce46431019b51a494;p=lttng-tools.git Fix: test: start-stop trigger: test execution is invalid Observed issue ============== The test expects the notification client to be a background process but `&` is not used. The notification client is expected to sync with its launcher via the sync file but the invocation of mktemp already creates the file. Solution ======= Use `&` and `mktemp -u`. While there a little cleanup in notification_client for error code path was done. Signed-off-by: Jonathan Rajotte Signed-off-by: Jérémie Galarneau Change-Id: Iba80413d6ca36989cd967895d3330860cb4ef614 ---