#!/usr/bin/bash

BASE=$1

if [ "$BASE" = "" ]; then
    echo Usage: test_fuse_pipe.sh BASENAME
    exit 1
fi

PATH=$PATH:/usr/share/pstorage/tests

for ((i=0; i<16; i++)); do
  test_fuse_pipe $BASE$i &
done >& out_test_fuse_pipe  &
