From 178df903c098abc262c2a412d8e5c22957c14b42 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Sun, 2 Sep 2012 10:21:59 +1000 Subject: [PATCH] Add action_none to assist hosts with no extra_actions The previous commit added a handler for extra_actions that are not tied to the success of the previous actions (allowing lcov and callcatcher to run even on failed tests). This was missing an action_none for all the other hosts. Andrew Bartlett --- build_test.fns | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build_test.fns b/build_test.fns index 400b8021..3b0a4b86 100644 --- a/build_test.fns +++ b/build_test.fns @@ -579,6 +579,14 @@ action_test() { esac } +############################# +# Do nothing (needed if we have nothing to do for extra_actions) +############################# + +action_none() { + return 0; +} + ########################### # do a test build of a particular tree # This is the master function called by generic.fns or -- 2.34.1