summaryrefslogtreecommitdiff
path: root/systest/all_SUITE_data/grisp_explode/src/mygrispproject.erl
diff options
context:
space:
mode:
authorFred Hebert <mononcqc@ferd.ca>2017-12-05 13:05:14 -0500
committerFred Hebert <mononcqc@ferd.ca>2017-12-05 13:18:32 -0500
commitd45bacb73bd1a255a5042929a49c81ab298df946 (patch)
tree73fcf91c48ce919a598f836f08a3b65e806c6a88 /systest/all_SUITE_data/grisp_explode/src/mygrispproject.erl
parentdb05d1ead04f5928a0e865d8317ad6204637cc48 (diff)
Run a soft purge while within the compiler step
Prevents the killing of a plugin with itself
Diffstat (limited to 'systest/all_SUITE_data/grisp_explode/src/mygrispproject.erl')
-rw-r--r--systest/all_SUITE_data/grisp_explode/src/mygrispproject.erl15
1 files changed, 15 insertions, 0 deletions
diff --git a/systest/all_SUITE_data/grisp_explode/src/mygrispproject.erl b/systest/all_SUITE_data/grisp_explode/src/mygrispproject.erl
new file mode 100644
index 0000000..a9152fe
--- /dev/null
+++ b/systest/all_SUITE_data/grisp_explode/src/mygrispproject.erl
@@ -0,0 +1,15 @@
+% @doc mygrispproject public API.
+% @end
+-module(mygrispproject).
+
+-behavior(application).
+
+% Callbacks
+-export([start/2]).
+-export([stop/1]).
+
+%--- Callbacks -----------------------------------------------------------------
+
+start(_Type, _Args) -> mygrispproject_sup:start_link().
+
+stop(_State) -> ok.