Skip to content
Snippets Groups Projects
Commit 663b2040 authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

now even longer

Rev: bin/metatest:1.2
parent 9ef305c6
No related branches found
No related tags found
No related merge requests found
...@@ -11,27 +11,36 @@ esac ...@@ -11,27 +11,36 @@ esac
set -e set -e
set -x set -x
docompile() { docompile4() {
mkdir test1 mkdir test1
cd test1 cd test1
$SRCPATH/src/configure --cache-file ../testcache $SRCPATH/src/configure --cache-file ../testcache
make "$1" d="DEBUGDEF=$1"
make verify "$1" make "$d"
make verify LPCOPTS=-d2 "$1" make verify "$d"
make verify LPCOPTS=-d2 "$d"
# make verify LPCOPTS=-d99 "$d"
cd .. cd ..
rm -rf test1 rm -rf test1
} }
docompile3() {
docompile4 "$1"
docompile4 "$1 -DFLAT_MAPPINGS"
docompile4 "$1 -DOLD_MAPPINGS"
}
docompile2() { docompile2() {
docompile DEBUGDEF="$1 -DDEBUG" docompile3 "$1 -DDEBUG"
docompile DEBUGDEF="$1" docompile3 "$1"
} }
docompile3() { docompile1() {
docompile2 "$1 -DALWAYS_GC" docompile2 "$1 -DALWAYS_GC"
docompile2 "$1 -DNO_GC" docompile2 "$1 -DNO_GC"
docompile2 "$1" docompile2 "$1"
} }
docompile3
docompile1
rm testcache rm testcache
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment