https://github.com/FALCONN-LIB/FALCONN
Raw File
Tip revision: a4c0288edb2575b0306c5f6b4ab1f559b1e272a4 authored by Ilya Razenshteyn on 04 June 2018, 17:28:07 UTC
Merge pull request #102 from csssaz/pseudo_compiler
Tip revision: a4c0288
test-script.sh
#! /bin/bash

FILENAME="test-output.txt"

make clean 2>&1 | tee $FILENAME
make run_all_cpp_tests 2>&1 | tee -a $FILENAME
printf "\n\n=========================================================================\n\n\n" | tee -a $FILENAME
make random_benchmark 2>&1 | tee -a $FILENAME
./random_benchmark 2>&1 | tee -a $FILENAME
back to top