#!/bin/bash

# Run the set of tests
CC="g++ -fstrict-aliasing -O6 -funroll-all-loops"
TYPE="long long"

for file in test*.c*; do
  echo ___ $file ____ "$(head -1 $file)"
  $CC -DTYPE="$TYPE" $file && time ./a.out 1000000
done
