Skip to content

Commit c6f8129

Browse files
getting tests working again for 1.15.0
1 parent 98c3894 commit c6f8129

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -99,23 +99,23 @@ run_test:
9999
$(TEST_VARS) ./bin/cli desc 4
100100
#
101101
@printf "\n\n\033[1mtests del command removes an application from process list\033[0m\n\n"
102-
$(TEST_VARS) ./bin/cli del 1
102+
$(TEST_VARS) ./bin/cli del 3 #this is a process id that doesnt exist in the config
103103
$(TEST_VARS) ./bin/cli ls_assert 3 running
104104
#
105105
@printf "\n\n\033[1mtests kill command result in stopping all processes\033[0m\n\n"
106106
$(TEST_VARS) ./bin/cli kill
107107
$(TEST_VARS) ./bin/cli ls_assert 3 stopped
108108
#
109109
@printf "\n\n\033[1mtests init command restarts all apps\033[0m\n\n"
110-
$(TEST_VARS) ./bin/cli init
110+
$(TEST_VARS) ./bin/cli init all blocking #this will restart all processes (including those speced in the apps config)
111111
$(TEST_VARS) ./bin/cli ls_assert 3 running
112112
#
113113
@printf "\n\n\033[1mtests drop command removes all applications\033[0m\n\n"
114114
$(TEST_VARS) ./bin/cli drop
115115
$(TEST_VARS) ./bin/cli ls_assert 0
116116
#
117117
@printf "\n\n\033[1mtests init commands boots pmond from app config\033[0m\n\n"
118-
$(TEST_VARS) ./bin/cli init
118+
$(TEST_VARS) ./bin/cli init all blocking
119119
$(TEST_VARS) ./bin/cli ls_assert 2 running
120120
#
121121
@printf "\n\n\033[1mtests that starting and stopping an app works\033[0m\n\n"

0 commit comments

Comments
 (0)