Skip to content
Snippets Groups Projects
Commit b4ba0d88 authored by Milo Craun's avatar Milo Craun
Browse files

Added a build and verify script for all livermore loops

parent 4f80ac09
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/bash
for f in *.c
do
../build.sh ${f%.c} &
done
wait
# Verify that we built all
echo "Printing Failures"
for f in *.c
do
num=$(find -name "${f%.c}*" | wc -l)
if [ $num -eq 1 ]
then
echo $f
echo $num
fi
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment