diff options
author | Björn Gustavsson <[email protected]> | 2012-02-01 17:04:44 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2012-02-08 10:59:03 +0100 |
commit | befc18e6aeb5313f5e3c98c9e3f3fb2a9214f4ec (patch) | |
tree | 84ce91d44123b6857b64a05e8d9578313319f288 /erts/test/Makefile | |
parent | 344f187ec3488cbc7b5a3d75bd8cc08f3b4fefab (diff) | |
download | otp-befc18e6aeb5313f5e3c98c9e3f3fb2a9214f4ec.tar.gz otp-befc18e6aeb5313f5e3c98c9e3f3fb2a9214f4ec.tar.bz2 otp-befc18e6aeb5313f5e3c98c9e3f3fb2a9214f4ec.zip |
Replace autoimport_SUITE with bif_SUITE:auto_imports/1
erts/test/autoimport_SUITE tested that auto-import information in
erl_internal:bif/2 was consistent with the documentation. It did
it by scanning erlang.xml.
Since the documentation is now based on the specs in erlang.erl,
we should now test consistency of the specs and erl_internal:bif/2.
Since anyone that adds a new BIF runs the emulator test suite, it
makes sense to do this test in bif_SUITE in the emulator test suite.
Diffstat (limited to 'erts/test/Makefile')
-rw-r--r-- | erts/test/Makefile | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/erts/test/Makefile b/erts/test/Makefile index 68be3f2178..f79bb6e5f0 100644 --- a/erts/test/Makefile +++ b/erts/test/Makefile @@ -28,7 +28,6 @@ EBIN = . # ---------------------------------------------------- MODULES= \ - autoimport_SUITE \ erlc_SUITE \ install_SUITE \ nt_SUITE \ @@ -39,14 +38,11 @@ MODULES= \ erlexec_SUITE \ z_SUITE -ERL_XML = $(ERL_TOP)/erts/doc/src/erlang.xml -ERL_XML_TARGET = autoimport_SUITE_data/erlang.xml - ERL_FILES= $(MODULES:%=%.erl) TARGET_FILES = $(MODULES:%=$(EBIN)/%.$(EMULATOR)) -EXTRA_FILES = install_SUITE_data/install_bin $(ERL_XML_TARGET) +EXTRA_FILES = install_SUITE_data/install_bin # ---------------------------------------------------- # Release directory specification @@ -68,10 +64,6 @@ install_SUITE_data/install_bin: ../../make/install_bin rm -f $@ cp -p $< $@ -$(ERL_XML_TARGET): $(ERL_XML) - rm -f $@ - cp -p $< $@ - clean: rm -f $(TARGET_FILES) $(EXTRA_FILES) rm -f core *~ |