view examples/build_examples.sh @ 550:faa58d765e30

#13: fix memory leak in LRUList. The blockcache tests are now leak-free
author Lewin Bormann <lbo@spheniscida.de>
date Sun, 06 Mar 2022 21:42:34 +0100
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