diff options
author | Loïc Hoguin <[email protected]> | 2022-05-23 12:01:19 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2022-05-23 12:01:19 +0200 |
commit | 42dddaebf4cb958d9552aebbaeb63d9f9c9baff5 (patch) | |
tree | 6e5a91493ab8dcb2b40b848e93c8aef8eae67b70 | |
parent | 099d602e825f20b59130dc4c8234de8ea870e78b (diff) | |
download | erlang.mk-42dddaebf4cb958d9552aebbaeb63d9f9c9baff5.tar.gz erlang.mk-42dddaebf4cb958d9552aebbaeb63d9f9c9baff5.tar.bz2 erlang.mk-42dddaebf4cb958d9552aebbaeb63d9f9c9baff5.zip |
Fix core-deps-rel test
-rw-r--r-- | test/core_deps.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/core_deps.mk b/test/core_deps.mk index 2d3f085..a398228 100644 --- a/test/core_deps.mk +++ b/test/core_deps.mk @@ -1260,8 +1260,8 @@ core-deps-rel: init $t cp ../erlang.mk $(APP)/ $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib bootstrap-rel $v - $i "Add Relx and Recon to the list of release dependencies" - $t perl -ni.bak -e 'print;if ($$.==1) {print "REL_DEPS = relx recon\n"}' $(APP)/Makefile + $i "Add Recon to the list of release dependencies" + $t perl -ni.bak -e 'print;if ($$.==1) {print "REL_DEPS = recon\n"}' $(APP)/Makefile $i "Add Recon to the relx.config file" $t $(ERL) -eval " \ @@ -1274,8 +1274,8 @@ core-deps-rel: init $i "Build the application and its dependencies" $t $(MAKE) -C $(APP) deps app $v - $i "Check that no dependencies were fetched" - $t test ! -e $(APP)/deps + $i "Check that Recon was not fetched" + $t test ! -e $(APP)/deps/recon $i "Check that the application was compiled correctly" $t $(ERL) -pa $(APP)/ebin/ -eval " \ @@ -1287,7 +1287,7 @@ core-deps-rel: init $i "Build the release" $t $(MAKE) -C $(APP) $v - $i "Check that all dependencies were fetched" + $i "Check that Recon was fetched" $t test -d $(APP)/deps/recon $i "Check that the application was compiled correctly" |