view examples/build_examples.sh @ 564:648cd1834556

Add stress test binary This writes and reads back large numbers of keys, testing mostly for crashes.
author Lewin Bormann <lbo@spheniscida.de>
date Thu, 07 Jul 2022 10:45:09 -0700
parents a32463dc4cb2
children
line wrap: on
line source

#!/bin/bash

set -e

for D in `find examples/ -maxdepth 1 -mindepth 1 -type d`;
do
    pushd ${D}
    cargo build
    popd
done