Changeset - r10729:809061d9ab58
[Not reviewed]
master
0 10 0
smatz - 16 years ago 2009-01-13 16:30:24
smatz@openttd.org
(svn r15062) -Fix: further forgotten svn properties and headers
10 files changed with 18 insertions and 0 deletions:
0 comments (0 inline, 0 general)
bin/ai/regression/completeness.sh
Show inline comments
 
modified file chmod 100644 => 100755
 
#!/bin/sh
 

	
 
# $Id$
 

	
 
if ! [ -f ai/regression/regression.nut ]; then
 
	echo "Make sure you are in the root of OpenTTD before starting this script."
 
	exit 1
 
fi
 

	
 
cat ai/regression/regression.nut | tr ';' '\n' | awk '
bin/ai/regression/regression.nut
Show inline comments
 
/* $Id$ */
 

	
 
import("queue.priority_queue", "PQ", 2);
 
import("queue.binary_heap", "BH", 1);
 
import("queue.fibonacci_heap", "FH", 1);
 
import("graph.aystar", "AS", 4);
 
import("pathfinder.road", "RPF", 3);
 

	
bin/ai/regression/regression_info.nut
Show inline comments
 
/* $Id$ */
 

	
 
class Regression extends AIInfo {
 
	function GetAuthor()      { return "OpenTTD NoAI Developers Team"; }
 
	function GetName()        { return "Regression"; }
 
	function GetDescription() { return "This runs regression-tests on all commands. On the same map the result should always be the same."; }
 
	function GetVersion()     { return 1; }
 
	function GetDate()        { return "2007-03-18"; }
bin/ai/regression/require.nut
Show inline comments
 
/* $Id$ */
 

	
 
print("  Required this file");
 

	
bin/ai/regression/run.sh
Show inline comments
 
modified file chmod 100644 => 100755
 
#!/bin/sh
 

	
 
# $Id$
 

	
 
if ! [ -f ai/regression/regression.nut ]; then
 
	echo "Make sure you are in the root of OpenTTD before starting this script."
 
	exit 1
 
fi
 

	
 
cp ai/regression/regression.nut ai/regression/main.nut
findversion.sh
Show inline comments
 
#!/bin/sh
 

	
 
# $Id$
 

	
 
# Arguments given? Show help text.
 
if [ "$#" != "0" ]; then
 
	cat <<EOF
 
Usage: ./findversion.sh
 
Finds the current revision and if the code is modified.
 

	
os/dos/make_dos_binary_selfcontained.sh
Show inline comments
 
#!/bin/sh
 

	
 
# $Id$
 

	
 
cd `dirname $0`
 
cc -o exe2coff exe2coff.c || exit
 
cp $1 binary.exe || exit
 
./exe2coff binary.exe || exit
 
cat cwsdstub.exe binary > binary.exe || exit
 
mv binary.exe $1
os/macosx/plistgen.sh
Show inline comments
 
#!/bin/sh
 

	
 
# $Id$
 

	
 
# sets VERSION to the value if RELEASE if there are any,
 
# otherwise it sets VERSION to revision number
 
if [ "$3" ]; then
 
VERSION="$3"
 
else
 
VERSION="$2"
src/ai/api/squirrel_export.sh
Show inline comments
 
modified file chmod 100644 => 100755
svnup.sh
Show inline comments
 
#!/bin/sh
 

	
 
# $Id$
 

	
 
# This script updates the svn source and displays log changes
 
# This is only useful for users of CLI based SVN clients
 
# Written by Bjarni
 

	
 
[ "$PAGER" ] || PAGER=less
 

	
0 comments (0 inline, 0 general)