aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/core_autopatch.mk40
1 files changed, 20 insertions, 20 deletions
diff --git a/test/core_autopatch.mk b/test/core_autopatch.mk
index fd2497d..2624f79 100644
--- a/test/core_autopatch.mk
+++ b/test/core_autopatch.mk
@@ -85,26 +85,26 @@ core-autopatch-no-autopatch-erlang-mk: init
$i "Check that Erlang.mk was not autopatched"
$t grep -q Hoguin $(APP)/deps/cowlib/erlang.mk
-core-autopatch-no-autopatch-rebar: init
-
- $i "Bootstrap a new OTP library named $(APP)"
- $t mkdir $(APP)/
- $t cp ../erlang.mk $(APP)/
- $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
-
- $i "Add Lager to the list of dependencies and to the NO_AUTOPATCH list"
- $t perl -ni.bak -e 'print;if ($$.==1) {print "DEPS = lager\nNO_AUTOPATCH = lager\n"}' $(APP)/Makefile
-
- $i "Build the application"
- $t $(MAKE) -C $(APP) $v
-
- $i "Check that all dependencies were fetched"
- $t test -d $(APP)/deps/goldrush
- $t test -d $(APP)/deps/lager
-
- $i "Check that Lager was not autopatched"
- $t if grep -q erlang\.mk $(APP)/deps/goldrush/Makefile; then false; fi
- $t if grep -q erlang\.mk $(APP)/deps/lager/Makefile; then false; fi
+#core-autopatch-no-autopatch-rebar: init
+#
+# $i "Bootstrap a new OTP library named $(APP)"
+# $t mkdir $(APP)/
+# $t cp ../erlang.mk $(APP)/
+# $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
+#
+# $i "Add Lager to the list of dependencies and to the NO_AUTOPATCH list"
+# $t perl -ni.bak -e 'print;if ($$.==1) {print "DEPS = lager\nNO_AUTOPATCH = lager\n"}' $(APP)/Makefile
+#
+# $i "Build the application"
+# $t $(MAKE) -C $(APP) $v
+#
+# $i "Check that all dependencies were fetched"
+# $t test -d $(APP)/deps/goldrush
+# $t test -d $(APP)/deps/lager
+#
+# $i "Check that Lager was not autopatched"
+# $t if grep -q erlang\.mk $(APP)/deps/goldrush/Makefile; then false; fi
+# $t if grep -q erlang\.mk $(APP)/deps/lager/Makefile; then false; fi
core-autopatch-port_env: init