remove runOne.sh
authorAdam Megacz <adam@megacz.com>
Thu, 23 Jul 2009 23:32:19 +0000 (16:32 -0700)
committerAdam Megacz <adam@megacz.com>
Thu, 23 Jul 2009 23:32:19 +0000 (16:32 -0700)
marina/testCode/runOne.sh [deleted file]

diff --git a/marina/testCode/runOne.sh b/marina/testCode/runOne.sh
deleted file mode 100644 (file)
index 9a6febe..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-
-# Run one test on Marina
-# Use the netlist generated from the schematic.
-# First argument is integer specifying which test
-# Second argument specifies mode: -exptSch -exptLay -chipSch -silicon
-
-echo ------------------------------------------------------------------------------
-echo Test number $1
-(time java -classpath "MarinaTest.jar" com.sun.vlsi.chips.marina.test.MarinaTest -testNum $1 $2) >& test$1.log
-if [ $? -ne 0 ] ; then
-  if [ $? -eq 1 ] ; then
-    # possibly buggy test
-    echo Crashed.
-  else
-    # test detected a hardware defect
-    echo Failed.
-  fi
-  ALL_PASSED=false
-  # save information so I can discover why test failed
-  mv marina.spi.out test$1.out
-  mv marina.spi.run test$1.run
-else
-  echo Passed.
-fi