From c5dd9ab292bdb9fdc2df0ee34256d8ebec592e9f Mon Sep 17 00:00:00 2001 From: Philippe Gerum Date: Tue, 3 Aug 2021 19:14:26 +0200 Subject: [PATCH] utils: evl-trace: fix implicit enable-all command Signed-off-by: Philippe Gerum --- LICENSE | 2 +- utils/evl-trace | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 8942808..819a5c4 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018-2019 Philippe Gerum and the libevl contributors. +Copyright (c) 2018-2021 Philippe Gerum and the libevl contributors. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/utils/evl-trace b/utils/evl-trace index bbd337b..a513f16 100755 --- a/utils/evl-trace +++ b/utils/evl-trace @@ -91,6 +91,10 @@ fi for group in $trace_groups do + if test $group = all; then + event_list="" + break + fi if test \! -r $EVL_CMDDIR/trace.$group; then echo >&2 "no trace group '$group'" exit 1