This repository has been archived on 2026-03-28. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
eodev/eo/test/run_tests
maartenkeijzer 9f5069b23a run_tests is expanded to run everything (but only once yet, will have
to address this later).
t-eoSymreg is build to run for just a few generations, otherwise testing
it would be an excercise in patience.
2001-02-11 16:35:21 +00:00

39 lines
754 B
Bash
Executable file

#!/bin/sh
echo "Starting t-eo"
./t-eo > eo.log
echo "Starting t-eoReplacement"
./t-eoReplacement > replacement.log
echo "Starting t-eoCheckpointing"
./t-eoCheckpointing > checkpointing.log
echo "Testing -h"
./t-eoCheckpointing -h > ch2.log
echo "Testing t-eoExternalEO"
./t-eoExternalEO > externalEO.log
echo "Testing t-eoGenOp"
./t-eoGenOp > genOp.log
echo "Testing t-eoSelect"
./t-eoSelect > select.log
echo "Testing t-eoStateAndParser"
# TODO, many different parameter settings and checks
./t-eoStateAndParser > stateAndParser.log
echo "Testing t-eoSymreg"
./t-eoSymreg > symreg.log
echo "Testing t-eobin"
./t-eobin > bin.log
echo "Testing t-eofitness"
./t-eofitness > fitness.log
echo "Finished"
#TODO test if an error occured
echo "Ok"