diff options
author | Brian Behlendorf <[email protected]> | 2016-10-20 09:55:03 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2016-10-20 09:55:03 -0700 |
commit | 72ac461cbe30cc4b9221e96b909f60ca1cb4a534 (patch) | |
tree | de3780679977a08273ed1ad854c81553f44d4d54 /tests | |
parent | 3b0ba3ba99b8a3af0fb532bf264629436b1abd84 (diff) |
Fix make distclean Makefile.am removal
The file tests/zfs-tests/tests/stress/Makefile.am gets mistakenly
removed by the distclean target because it's empty. Adding a
`SUBDIRS =` line prevents the removal.
This directory is being preserved as the location to add assorted
stress tests. These may include but are not limited to.
http://kernel.ubuntu.com/~cking/stress-ng/
https://github.com/zfsonlinux/zfsstress/
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #5308
Diffstat (limited to 'tests')
-rw-r--r-- | tests/zfs-tests/tests/stress/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/zfs-tests/tests/stress/Makefile.am b/tests/zfs-tests/tests/stress/Makefile.am index e69de29bb..741f85085 100644 --- a/tests/zfs-tests/tests/stress/Makefile.am +++ b/tests/zfs-tests/tests/stress/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = |