Просмотр исходного кода

Make ct_run use -noinput instead of -noshell

Loïc Hoguin 10 лет назад
Родитель
Сommit
3659eafbf7
2 измененных файлов с 2 добавлено и 2 удалено
  1. 1 1
      erlang.mk
  2. 1 1
      plugins/ct.mk

+ 1 - 1
erlang.mk

@@ -781,7 +781,7 @@ ALL_TEST_DEPS_DIRS = $(addprefix $(DEPS_DIR)/,$(TEST_DEPS))
 
 CT_RUN = ct_run \
 	-no_auto_compile \
-	-noshell \
+	-noinput \
 	-pa $(realpath ebin) $(DEPS_DIR)/*/ebin \
 	-dir test \
 	-logdir logs

+ 1 - 1
plugins/ct.mk

@@ -34,7 +34,7 @@ ALL_TEST_DEPS_DIRS = $(addprefix $(DEPS_DIR)/,$(TEST_DEPS))
 
 CT_RUN = ct_run \
 	-no_auto_compile \
-	-noshell \
+	-noinput \
 	-pa $(realpath ebin) $(DEPS_DIR)/*/ebin \
 	-dir test \
 	-logdir logs