From a5a6b94c038e01ebf1e2de0a0774a69b02fb8e1e Mon Sep 17 00:00:00 2001
From: Tavian Barnes <tavianator@gmail.com>
Date: Sun, 15 May 2011 15:54:56 -0600
Subject: Group tests and benchmarks with the corresponding source code.

---
 bench/dimension/Makefile.am |  35 -------------
 bench/dimension/bench.pov   | 118 --------------------------------------------
 bench/dimension/parse.sh    |  59 ----------------------
 bench/dimension/render.sh   |  25 ----------
 bench/dimension/tokenize.sh |  24 ---------
 5 files changed, 261 deletions(-)
 delete mode 100644 bench/dimension/Makefile.am
 delete mode 100644 bench/dimension/bench.pov
 delete mode 100755 bench/dimension/parse.sh
 delete mode 100755 bench/dimension/render.sh
 delete mode 100755 bench/dimension/tokenize.sh

(limited to 'bench/dimension')

diff --git a/bench/dimension/Makefile.am b/bench/dimension/Makefile.am
deleted file mode 100644
index e7fe03f..0000000
--- a/bench/dimension/Makefile.am
+++ /dev/null
@@ -1,35 +0,0 @@
-###########################################################################
-## Copyright (C) 2009-2010 Tavian Barnes <tavianator@tavianator.com>     ##
-##                                                                       ##
-## This file is part of The Dimension Build Suite.                       ##
-##                                                                       ##
-## The Dimension Build Suite is free software; you can redistribute it   ##
-## and/or modify it under the terms of the GNU General Public License as ##
-## published by the Free Software Foundation; either version 3 of the    ##
-## License, or (at your option) any later version.                       ##
-##                                                                       ##
-## The Dimension Build Suite is distributed in the hope that it will be  ##
-## useful, but WITHOUT ANY WARRANTY; without even the implied warranty   ##
-## of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU  ##
-## General Public License for more details.                              ##
-##                                                                       ##
-## You should have received a copy of the GNU General Public License     ##
-## along with this program.  If not, see <http://www.gnu.org/licenses/>. ##
-###########################################################################
-
-ENVIRONMENT = top_builddir=$(top_builddir)
-
-bench: tokenize.sh parse.sh render.sh
-	$(ENVIRONMENT) ./tokenize.sh
-	$(ENVIRONMENT) ./parse.sh
-	$(ENVIRONMENT) ./render.sh
-
-.sh:
-	cp $(srcdir)/$@ .
-
-clean-local:
-	rm -f *.png
-
-EXTRA_DIST = bench.pov
-
-.PHONY: bench
diff --git a/bench/dimension/bench.pov b/bench/dimension/bench.pov
deleted file mode 100644
index a4f632f..0000000
--- a/bench/dimension/bench.pov
+++ /dev/null
@@ -1,118 +0,0 @@
-/*************************************************************************
- * Copyright (C) 2009-2010 Tavian Barnes <tavianator@tavianator.com>     *
- *                                                                       *
- * This file is part of The Dimension Benchmark Suite.                   *
- *                                                                       *
- * The Dimension Benchmark Suite is free software; you can redistribute  *
- * it and/or modify it under the terms of the GNU General Public License *
- * as published by the Free Software Foundation; either version 3 of the *
- * License, or (at your option) any later version.                       *
- *                                                                       *
- * The Dimension Benchmark Suite is distributed in the hope that it will *
- * be useful, but WITHOUT ANY WARRANTY; without even the implied         *
- * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See *
- * the GNU General Public License for more details.                      *
- *                                                                       *
- * You should have received a copy of the GNU General Public License     *
- * along with this program.  If not, see <http://www.gnu.org/licenses/>. *
- *************************************************************************/
-
-camera {
-  location  <3.0, 6.0, -11.0>
-  right     x*image_width/image_height
-  look_at   0
-}
-
-background {
-  color rgb 1
-}
-
-// inside center sphere
-light_source {
-  0,
-  color rgb 1
-}
-
-light_source {
-  2*y,
-  color rgb 1
-}
-
-/* plane {
-  y,
-  -1
-  // *** hollow on
-  pigment {
-    rgb <0.73, 0.90, 0.97>
-  }
-  finish {
-    diffuse 0.35
-    ambient .5
-  }
-} */
-
-#macro sph(center)
-  sphere {
-    center,
-    1
-    texture {
-      // *** crackle
-      scale 0.5
-
-      /* *** texture_map {
-        [ 0.03
-          pigment {
-            color rgb 1
-          }
-          finish {
-            ambient 1
-          }
-          normal {
-            facets size 0.1
-          }
-        ]
-        [ 0.04
-          pigment {
-            color rgbf <1, 1, 1, 0.9>
-          }
-          finish {
-            reflection { 0.2 }
-            specular 0.1
-            roughness 0.02
-            conserve_energy
-          }
-          normal {
-            facets size 0.1
-          }
-        ]
-      } *** */
-    }
-    interior {
-      ior 1.3
-    }
-  }
-#end
-
-union {
-  #declare Size = 4;
-  #declare I = -Size;
-  #while (I <= Size)
-    #declare J = -Size;
-
-    #while (J <= Size)
-      #declare K = -Size;
-
-      #while (K <= Size)
-        object {
-          sph(<2.5*I, 2.5*K, 2.5*J>)
-        }
-
-        #declare K = K + 1;
-      #end
-
-      #declare J = J + 1;
-    #end
-
-    #declare I = I + 1;
-  #end
-}
diff --git a/bench/dimension/parse.sh b/bench/dimension/parse.sh
deleted file mode 100755
index b7db055..0000000
--- a/bench/dimension/parse.sh
+++ /dev/null
@@ -1,59 +0,0 @@
-#!/bin/bash
-
-#########################################################################
-# Copyright (C) 2009-2010 Tavian Barnes <tavianator@tavianator.com>     #
-#                                                                       #
-# This file is part of The Dimension Benchmark Suite.                   #
-#                                                                       #
-# The Dimension Benchmark Suite is free software; you can redistribute  #
-# it and/or modify it under the terms of the GNU General Public License #
-# as published by the Free Software Foundation; either version 3 of the #
-# License, or (at your option) any later version.                       #
-#                                                                       #
-# The Dimension Benchmark Suite is distributed in the hope that it will #
-# be useful, but WITHOUT ANY WARRANTY; without even the implied         #
-# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See #
-# the GNU General Public License for more details.                      #
-#                                                                       #
-# You should have received a copy of the GNU General Public License     #
-# along with this program.  If not, see <http://www.gnu.org/licenses/>. #
-#########################################################################
-
-for i in {1..10000}; do
-  echo '
-difference {
-  box {
-    <-1, -1, -1>, <1, 1, 1>
-
-    rotate 45*x
-
-    texture {
-      pigment {
-        color rgbft <0, 0, 1, 0.25, 0.5>
-      }
-      finish {
-        reflection { 0.5 }
-      }
-    }
-
-    interior {
-      ior 1.1
-    }
-  }
-
-  sphere {
-    <0, 0, 0>, 1.25
-
-    texture {
-      pigment {
-        color rgb <0, 1, 0>
-      }
-      finish {
-        phong 0.2
-        phong_size 40.0
-      }
-    }
-  }
-}
-'
-done | (time ${top_builddir}/dimension/dimension --parse /dev/stdin >/dev/null)
diff --git a/bench/dimension/render.sh b/bench/dimension/render.sh
deleted file mode 100755
index b661e53..0000000
--- a/bench/dimension/render.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-
-#########################################################################
-# Copyright (C) 2009-2011 Tavian Barnes <tavianator@tavianator.com>     #
-#                                                                       #
-# This file is part of The Dimension Benchmark Suite.                   #
-#                                                                       #
-# The Dimension Benchmark Suite is free software; you can redistribute  #
-# it and/or modify it under the terms of the GNU General Public License #
-# as published by the Free Software Foundation; either version 3 of the #
-# License, or (at your option) any later version.                       #
-#                                                                       #
-# The Dimension Benchmark Suite is distributed in the hope that it will #
-# be useful, but WITHOUT ANY WARRANTY; without even the implied         #
-# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See #
-# the GNU General Public License for more details.                      #
-#                                                                       #
-# You should have received a copy of the GNU General Public License     #
-# along with this program.  If not, see <http://www.gnu.org/licenses/>. #
-#########################################################################
-
-echo -e "Single-threaded"
-time ${top_builddir}/dimension/dimension -w1920 -h1080 --quality=1 --threads=1 bench.pov
-echo -e "\nMulti-threaded"
-time ${top_builddir}/dimension/dimension -w1920 -h1080 --quality=1 bench.pov
diff --git a/bench/dimension/tokenize.sh b/bench/dimension/tokenize.sh
deleted file mode 100755
index 1d833d5..0000000
--- a/bench/dimension/tokenize.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/bash
-
-#########################################################################
-# Copyright (C) 2009-2010 Tavian Barnes <tavianator@tavianator.com>     #
-#                                                                       #
-# This file is part of The Dimension Benchmark Suite.                   #
-#                                                                       #
-# The Dimension Benchmark Suite is free software; you can redistribute  #
-# it and/or modify it under the terms of the GNU General Public License #
-# as published by the Free Software Foundation; either version 3 of the #
-# License, or (at your option) any later version.                       #
-#                                                                       #
-# The Dimension Benchmark Suite is distributed in the hope that it will #
-# be useful, but WITHOUT ANY WARRANTY; without even the implied         #
-# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See #
-# the GNU General Public License for more details.                      #
-#                                                                       #
-# You should have received a copy of the GNU General Public License     #
-# along with this program.  If not, see <http://www.gnu.org/licenses/>. #
-#########################################################################
-
-for i in {1..10000}; do
-  echo '{}()[]+-*/,;?:&.|=<>!<= >= != "This is a string with escape sequences: \a\b\f\n\r\t\u2123\v\\\"" 1 123456789 01234567 0x123456789 -0x01 .1 0.1 1.0 0.123456789 -0.123456789 <1, 2.2, -3.03> Undefined'
-done | (time ${top_builddir}/dimension/dimension --tokenize /dev/stdin >/dev/null)
-- 
cgit v1.2.3