Commit af385f3fb46cc5e798b70d934269640d0ad4e10b

Stefan Reinauer 2006-10-14T20:36:03

small fix for test executor git-svn-id: svn://coreboot.org/openbios/fcode-utils@93 f158a5a8-5612-0410-a976-696ce0be7e32

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/testsuite/AutoExec b/testsuite/AutoExec
index ece00a6..41a327c 100644
--- a/testsuite/AutoExec
+++ b/testsuite/AutoExec
@@ -45,8 +45,8 @@
 
 
 #  Initial error-checking:
-if ( ( ! -x ./toke ) || ( ! -x ./detok ) ) then
-    echo 'Starting in wrong directory.  Executable toke and detok are not here.'
+if ( ( ! -x ./toke ) || ( ! -x ./detok ) || ( ! -x ./romheaders ) ) then
+    echo 'Starting in wrong directory.  Executable toke, detok and romheaders are not here.'
     exit 1
 endif