From 6931e45203b052afcf12d950538d5d393a3ed081 Mon Sep 17 00:00:00 2001 From: Viktor Kuncak <vkuncak@gmail.com> Date: Mon, 13 Jul 2009 09:46:26 +0000 Subject: [PATCH] a test script --- test-leftist | 105 +++++++++++++++++++++++++++++++++++++++++++++++++++ test-splay | 105 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 210 insertions(+) create mode 100755 test-leftist create mode 100755 test-splay diff --git a/test-leftist b/test-leftist new file mode 100755 index 000000000..64a0291a9 --- /dev/null +++ b/test-leftist @@ -0,0 +1,105 @@ +#!/bin/bash + +echo +echo "********************************************************************************" +echo "** COMPILE AND RUN EXAMPLES **" +echo "********************************************************************************" +echo + +echo +echo "********************************************************************************" +echo "Compile and Build the distribution using ANT" +echo "********************************************************************************" +echo + +# first clean +#ant clean +# and build the distribution +ant dist + +# Note: +# When the distribution is builded the script scalac-funcheck should be created. +# This will be used to compile the examples since the Funcheck compiler plugin +# will take care of transforming the Specs.forAll calls into ScalaCheck forAll +# ones. + +echo +echo "********************************************************************************" +echo "Check that needed scripts and libraries are available." +echo "********************************************************************************" +echo + +export SCALAC_SCRIPT="scalac-funcheck" +export SCALACHECK_JAR="lib/ScalaCheck-1.5.jar" + +if [ -e "$SCALAC_SCRIPT" ] +then + echo "[OK] ${SCALAC_SCRIPT} script found." + if [ -e "${SCALACHECK_JAR}" ] + then + echo "[OK] ${SCALACHECK_JAR} found." + else + echo "[ERROR] ${SCALACHECK_JAR} NOT found." + echo "Please correct this and try again." + return -1 + fi +else + echo "[ERROR] ${SCALAC_SCRIPT} script NOT found." + echo "Please correct this and try again." + return -1 +fi + + +echo +echo "********************************************************************************" +echo "Compile tests that have declared forAll properties." +echo "********************************************************************************" +echo + + +#This is needed for aliases to work correctly +shopt -s expand_aliases; + + +alias scalac=".././scalac-funcheck -cp ../bin:../lib/ScalaCheck-1.5.jar -d ../bin/tests" + +mkdir bin/tests +cd tests + +scalac plugin/LeftistHeap.scala + +cd .. + +# Scala compiler with the Funcheck plugin integrated +#alias scalac="./scalac-funcheck" + +# compile examples using the compiler with the Funcheck plugin +#ant compile-funcheck-tests + + +echo +echo "********************************************************************************" +echo "Running tests with forAll properties." +echo "********************************************************************************" +echo + +alias scala="scala -cp bin/:${SCALACHECK_JAR}:bin/tests/" + +# examples +export BST="plugin.BST" +export LeftistHeap="plugin.LeftistHeap" +export ListSet="plugin.ListSet" +export LambdaEvaluator="plugin.LambdaEvaluator" +export PropositionalLogic="plugin.PropositionalLogic" +export SetRedBlackTree="plugin.SetRedBlackTree" +export ConsSnoc="plugin.ConsSnoc" + +export InsertSort="plugin.kawaguchi.InsertSort" +export MergeSort="plugin.kawaguchi.MergeSort" +export MergeSortBug="plugin.kawaguchi.MergeSortBug" +export QuickSort="plugin.kawaguchi.QuickSort" +export MapReduce="plugin.kawaguchi.MapReduce" +export SplayHeap="plugin.kawaguchi.SplayHeap" + +echo " - Testing ${LeftistHeap}" +scala ${LeftistHeap} diff --git a/test-splay b/test-splay new file mode 100755 index 000000000..fc7f0ba5e --- /dev/null +++ b/test-splay @@ -0,0 +1,105 @@ +#!/bin/bash + +echo +echo "********************************************************************************" +echo "** COMPILE AND RUN EXAMPLES **" +echo "********************************************************************************" +echo + +echo +echo "********************************************************************************" +echo "Compile and Build the distribution using ANT" +echo "********************************************************************************" +echo + +# first clean +#ant clean +# and build the distribution +ant dist + +# Note: +# When the distribution is builded the script scalac-funcheck should be created. +# This will be used to compile the examples since the Funcheck compiler plugin +# will take care of transforming the Specs.forAll calls into ScalaCheck forAll +# ones. + +echo +echo "********************************************************************************" +echo "Check that needed scripts and libraries are available." +echo "********************************************************************************" +echo + +export SCALAC_SCRIPT="scalac-funcheck" +export SCALACHECK_JAR="lib/ScalaCheck-1.5.jar" + +if [ -e "$SCALAC_SCRIPT" ] +then + echo "[OK] ${SCALAC_SCRIPT} script found." + if [ -e "${SCALACHECK_JAR}" ] + then + echo "[OK] ${SCALACHECK_JAR} found." + else + echo "[ERROR] ${SCALACHECK_JAR} NOT found." + echo "Please correct this and try again." + return -1 + fi +else + echo "[ERROR] ${SCALAC_SCRIPT} script NOT found." + echo "Please correct this and try again." + return -1 +fi + + +echo +echo "********************************************************************************" +echo "Compile tests that have declared forAll properties." +echo "********************************************************************************" +echo + + +#This is needed for aliases to work correctly +shopt -s expand_aliases; + + +alias scalac=".././scalac-funcheck -cp ../bin:../lib/ScalaCheck-1.5.jar -d ../bin/tests" + +mkdir bin/tests +cd tests + +scalac plugin/kawaguchi/SplayHeap.scala + +cd .. + +# Scala compiler with the Funcheck plugin integrated +#alias scalac="./scalac-funcheck" + +# compile examples using the compiler with the Funcheck plugin +#ant compile-funcheck-tests + + +echo +echo "********************************************************************************" +echo "Running tests with forAll properties." +echo "********************************************************************************" +echo + +alias scala="scala -cp bin/:${SCALACHECK_JAR}:bin/tests/" + +# examples +export BST="plugin.BST" +export LeftistHeap="plugin.LeftistHeap" +export ListSet="plugin.ListSet" +export LambdaEvaluator="plugin.LambdaEvaluator" +export PropositionalLogic="plugin.PropositionalLogic" +export SetRedBlackTree="plugin.SetRedBlackTree" +export ConsSnoc="plugin.ConsSnoc" + +export InsertSort="plugin.kawaguchi.InsertSort" +export MergeSort="plugin.kawaguchi.MergeSort" +export MergeSortBug="plugin.kawaguchi.MergeSortBug" +export QuickSort="plugin.kawaguchi.QuickSort" +export MapReduce="plugin.kawaguchi.MapReduce" +export SplayHeap="plugin.kawaguchi.SplayHeap" + +echo " - Testing ${SplayHeap}" +scala ${SplayHeap} -- GitLab