2005-10-04 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System.Drawing / Samples / run-samples.sh
index dda05d0041e3f69e1e09f29bb1fe98b67c7fc0b1..3f8af55f0cee4ca126f946a6c627c81a510483ae 100755 (executable)
@@ -1,79 +1,83 @@
 #!/bin/sh 
 ################## System.Drawing: run-samples.sh #######################
-#                                                                      #
-# This script compiles and runs samples from each directory in                 #
-# System.Drawing.Samples directory. Compiled exes and output           #
-# images, if any, are saved to respective directories.                 #
-# Compile time logs are saved to compile-log.txt and runtime logs are  #
-# saved to runtime-log.txt. Both log files are saved at the same       #
-# location where this script is run.                                   #
-#                                                                      #
-# Following are the two ways to run this script,                       #
-#      $ run-samples.sh                                                #
-#      OR                                                              #
-#      $ run-samples.sh [option]                                       #
-#                                                                      #
-# NOTE: Possible options are (m)ake, (c)lean, (r)un, (a)ll             #
-#      --run is default option, when no option is specified.           #
-#        Only one option can be specified at a time.                   #
-#      -m, --make - compiles all the samples                           #
-#      -c, --clean - deletes all the exes generated                    #
-#      -r, --run - compiles and runs all the samples. [Default]        #
-#      -a, --all - runs all the samples and also cleans                #
-#                                                                      #
-# **** This script would hang, if any sample hangs!!!                  #
-#                                                                      #
-#      Authors:                                                        #
-#              Sachin <skumar1@novell.com>                             #
-#              Ravindra <rkumar@novell.com>                            #
-#                                                                      #
-#      Copyright (C) 2004, Novell, Inc. http://www.novell.com          #
-#                                                                      #
+#                                                                       #
+# This script compiles and runs samples from each directory in          #
+# System.Drawing.Samples directory. Compiled exes and output            #
+# images, if any, are saved to respective directories.                  #
+# Compile time logs are saved to compile-log.txt and runtime logs are   #
+# saved to runtime-log.txt. Both log files are saved at the same        #
+# location where this script is run.                                    #
+#                                                                       #
+# Following are the two ways to run this script,                        #
+#        $ run-samples.sh                                               #
+#        OR                                                             #
+#        $ run-samples.sh [option]                                      #
+#                                                                       #
+# NOTE: Possible options are (m)ake, (c)lean, (r)un, (a)ll              #
+#        --run is default option, when no option is specified.          #
+#          Only one option can be specified at a time.                  #
+#        -m, --make - compiles all the samples                          #
+#        -c, --clean - deletes all the exes generated                   #
+#        -r, --run - compiles and runs all the samples. [Default]       #
+#        -a, --all - runs all the samples and also cleans               #
+#                                                                       #
+# **** This script would hang, if any sample hangs!!!                   #
+#                                                                       #
+#        Authors:                                                       #
+#                Sachin <skumar1@novell.com>                            #
+#                Ravindra <rkumar@novell.com>                           #
+#                                                                       #
+#        Copyright (C) 2004, Novell, Inc. http://www.novell.com         #
+#                                                                       #
 #########################################################################
 
 # Prints the script usage
 print_usage ()
 {
-       echo "Usage: run-samples [option]"
-       echo "Only one option is processed at a time."
-       echo "Possible options are: (m)ake, (c)lean, (r)un, (a)ll"
-       echo "  -m, --make: Just compiles all the samples."
-       echo "  -c, --clean: Just removes all the exes."
-       echo "  -r, --run: makes and runs all the samples. [Default]"
-       echo "  -a, --all: same as run and clean combined."
-       echo "  --run option is assumed, if no option is specified."
-       exit 1
+    echo "Usage: run-samples [option]"
+    echo "Only one option is processed at a time."
+    echo "Possible options are: (m)ake, (c)lean, (r)un, (a)ll"
+    echo "        -m, --make: Just compiles all the samples."
+    echo "        -c, --clean: Just removes all the exes."
+    echo "        -r, --run: makes and runs all the samples. [Default]"
+    echo "        -a, --all: same as run and clean combined."
+    echo "        --run option is assumed, if no option is specified."
+    exit 1
 }
 
 # Compiles all the samples
 compile ()
 {
-       for src in *.cs
-       do
-               echo $src
-               echo -n "$src:: " >> $CLOG
-               $MCS $COMPILE_OPS $src >> $CLOG 2>&1
-       done
+    echo === Compiling samples in $dir ===
+
+    for src in *.cs
+      do
+      echo " $src"
+      echo -n " $src:: " >> $CLOG
+      $MCS $COMPILE_OPS $src >> $CLOG 2>&1
+    done
 }
 
-# Deletes are the exes
+# Deletes all the exes
 clean ()
 {
+    echo === Cleaning $dir ===
     rm *.exe
 }
 
 # Compiles and runs all the samples
 run ()
 {
-        compile
-       for exe in *.exe
-       do
-               echo $exe
-               echo >> $RLOG
-               echo "$dir: $exe :: " >> $RLOG
-               echo >> $RLOG
-               $MONO $RUN_OPS $exe >> $RLOG 2>&1
-       done
+    compile
+    echo === Running samples in $dir ===
+    for exe in *.exe
+      do
+      echo " $exe"
+      echo >> $RLOG
+      echo "$dir: $exe :: " >> $RLOG
+      echo >> $RLOG
+      $MONO $RUN_OPS $exe >> $RLOG 2>&1
+    done
 }
 
 # Compliles, runs and deletes all the exes
@@ -94,7 +98,7 @@ LIB=System.Drawing
 COMPILE_OPS="-g -r:$LIB"
 RUN_OPS=--debug
 
-# Uncomment the following line, if you are running this script of MS
+# Uncomment the following line, if you are running this script on MS
 #MSNet=yes
 
 # We don't process more than one command line arguments
@@ -114,33 +118,31 @@ echo '*** LOG FILE for compile-time messages for System.Drawing Samples ***' > $
 echo '*** LOG FILE for run-time output messages for System.Drawing Samples ***' > $RLOG
 
 # All directories are processed under Samples.
-for dir in System.Drawing System.Drawing.Drawing2D General System.Drawing.Imaging System.Drawing.Printing System.Drawing.Text
-do
-       echo ===== $dir ====
-
-       echo >> $CLOG
-       echo ===== $dir ==== >> $CLOG
+for dir in `ls -d System.Drawing*`
+  do
+  echo >> $CLOG
+  echo ===== $dir ===== >> $CLOG
 
-       echo >> $RLOG
-       echo ===== $dir ==== >> $RLOG
+  echo >> $RLOG
+  echo ===== $dir ===== >> $RLOG
 
-       # Change dir if it exists
-       if [ -d $ROOT/$dir ]; then
-           cd $ROOT/$dir
-           case $arg in
-               "-m") compile ;;
-               "--make") compile ;;
-               "-r") run ;;
-               "--run") run ;;
-               "-a") all ;;
-               "--all") all ;;
-               "-c") clean ;;
-               "--clean") clean ;;
-               *) print_usage ;;
-           esac
-           cd ..
-       else
-               echo "$dir not found." >> $CLOG
-               echo "$dir not found." >> $RLOG
-       fi
+  # Change dir if it exists
+  if [ -d $ROOT/$dir ]; then
+      cd $ROOT/$dir
+      case $arg in
+         "-m") compile ;;
+         "--make") compile ;;
+         "-r") run ;;
+         "--run") run ;;
+         "-a") all ;;
+         "--all") all ;;
+         "-c") clean ;;
+         "--clean") clean ;;
+         *) print_usage ;;
+      esac
+      cd ..
+  else
+      echo "$dir not found." >> $CLOG
+      echo "$dir not found." >> $RLOG
+  fi
 done