Fix: Tests: `gen-ust-events` doesn't error out on invalid option
authorFrancis Deslauriers <francis.deslauriers@efficios.com>
Wed, 4 Mar 2020 21:18:37 +0000 (16:18 -0500)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Tue, 17 Mar 2020 17:43:36 +0000 (13:43 -0400)
commit86cf031ae8be7633ff8eee0cd0bf503b331cfc34
tree05605fb3fcc58480fbc75a9943fd6a435d81d6ee
parent94360c17201a28466af49058735166c73f9ae130
Fix: Tests: `gen-ust-events` doesn't error out on invalid option

Issue
=====
When running `gen-ust-events` with an invalid option:
  ./gen-ust-events -h

The `getopt_long()` function prints the following error:
  ./gen-ust-events: invalid option -- 'h'

which is very kind of it.

The problem is that the process keep running and go on to generate
events. It should exit right away.

Solution
========
Remove the `break` statement and so that we execute the `goto end`
right away.

Apply the same changes to `gen-ust-nevents`.

Signed-off-by: Francis Deslauriers <francis.deslauriers@efficios.com>
Change-Id: Ib1c96f4c9ed8f98395bf842215f858a69db2bbf0
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
tests/utils/testapp/gen-ust-events/gen-ust-events.c
tests/utils/testapp/gen-ust-nevents/gen-ust-nevents.c
This page took 0.026308 seconds and 5 git commands to generate.