#!/bin/bash # Copyright (C) 2020 Ben Asselstine # # Copying and distribution of this file, with or without modification, # are permitted in any medium without royalty provided the copyright # notice and this notice are preserved. This file is offered as-is, # without any warranty. #here is what we expect expected=`mktemp $builddir/fituvalu.XXXXXX` bindir=$builddir/../src $bindir/sq-seq 1000000 | $bindir/find-3sq-progressions-sq -n | $bindir/search-68-small --3sq >$expected #generating our results $bindir/sq-seq 1000000 | $bindir/find-3sq-progressions-sq -n | $bindir/search-68 --3sq #0139.log is simultaneously created as this script runs. diff -uNrd $expected $builddir/0139.log retval=$? #cleanup rm $expected exit $retval