diff options
author | Péter Dimitrov <[email protected]> | 2018-06-11 14:56:04 +0200 |
---|---|---|
committer | Péter Dimitrov <[email protected]> | 2018-06-11 15:44:13 +0200 |
commit | 24231f76f5e3fed3ec64abdfca22928928f46933 (patch) | |
tree | 6342c09a0374dad9f08578c227ffb58a86271900 /lib | |
parent | 1ff534f6e410c4904b6e65dbfc9135d34445685d (diff) | |
download | otp-24231f76f5e3fed3ec64abdfca22928928f46933.tar.gz otp-24231f76f5e3fed3ec64abdfca22928928f46933.tar.bz2 otp-24231f76f5e3fed3ec64abdfca22928928f46933.zip |
stdlib: Fix release_tests target in Makefile
'make release_tests' copies the property_test directory.
Change-Id: Ife75711aec1ef6e85ef091b1ba28a221be3d1110
Diffstat (limited to 'lib')
-rw-r--r-- | lib/stdlib/test/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/stdlib/test/Makefile b/lib/stdlib/test/Makefile index ae2e3d0e2b..bbe3cefa42 100644 --- a/lib/stdlib/test/Makefile +++ b/lib/stdlib/test/Makefile @@ -88,6 +88,7 @@ MODULES= \ unicode_SUITE \ unicode_util_SUITE \ uri_string_SUITE \ + uri_string_property_test_SUITE \ win32reg_SUITE \ y2k_SUITE \ select_SUITE \ @@ -152,6 +153,6 @@ release_tests_spec: make_emakefile $(INSTALL_DATA) stdlib.spec stdlib_bench.spec $(EMAKEFILE) \ $(ERL_FILES) $(COVERFILE) "$(RELSYSDIR)" chmod -R u+w "$(RELSYSDIR)" - @tar cf - *_SUITE_data | (cd "$(RELSYSDIR)"; tar xf -) + @tar cf - *_SUITE_data property_test | (cd "$(RELSYSDIR)"; tar xf -) release_docs_spec: |