diff options
author | Björn Gustavsson <[email protected]> | 2010-03-11 09:19:58 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2010-03-11 09:19:58 +0000 |
commit | a3202b05d648732b7d2afe3ad952782e5376a18d (patch) | |
tree | a9607987555b3ab1217f38fa06e6ce0d1bd57282 /lib/asn1/test/Makefile | |
parent | 356c33b6063de632f9c98c66260603e6edbc3ee5 (diff) | |
download | otp-a3202b05d648732b7d2afe3ad952782e5376a18d.tar.gz otp-a3202b05d648732b7d2afe3ad952782e5376a18d.tar.bz2 otp-a3202b05d648732b7d2afe3ad952782e5376a18d.zip |
OTP-8516 asn1: clean up test suite
Diffstat (limited to 'lib/asn1/test/Makefile')
-rw-r--r-- | lib/asn1/test/Makefile | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/lib/asn1/test/Makefile b/lib/asn1/test/Makefile index d91b77dfc5..879e51c632 100644 --- a/lib/asn1/test/Makefile +++ b/lib/asn1/test/Makefile @@ -1,19 +1,19 @@ # # %CopyrightBegin% -# -# Copyright Ericsson AB 1997-2009. All Rights Reserved. -# +# +# Copyright Ericsson AB 1997-2010. All Rights Reserved. +# # The contents of this file are subject to the Erlang Public License, # Version 1.1, (the "License"); you may not use this file except in # compliance with the License. You should have received a copy of the # Erlang Public License along with this software. If not, it can be # retrieved online at http://www.erlang.org/. -# +# # Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See # the License for the specific language governing rights and limitations # under the License. -# +# # %CopyrightEnd% # # @@ -193,7 +193,12 @@ release_tests_spec: opt $(INSTALL_DATA) $(ERL_FILES) $(HRL_FILES) $(RELSYSDIR) $(INSTALL_DATA) asn1.spec $(INSTALL_PROGS) $(RELSYSDIR) chmod -f -R u+w $(RELSYSDIR) - @tar cfh - *_SUITE_data | (cd $(RELSYSDIR); tar xf -) + @tar cf - *_SUITE_data | (cd $(RELSYSDIR); tar xf -) + $(INSTALL_DIR) $(RELSYSDIR)/asn1_bin_SUITE_data + @(cd asn1_SUITE_data; tar cf - *) | (cd $(RELSYSDIR)/asn1_bin_SUITE_data; tar xf -) + $(INSTALL_DIR) $(RELSYSDIR)/asn1_bin_v2_SUITE_data + @(cd asn1_SUITE_data; tar cf - *) | (cd $(RELSYSDIR)/asn1_bin_v2_SUITE_data; tar xf -) + release_docs_spec: |