Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
gciolli committed Nov 6, 2012
1 parent 3492040 commit c7ad9ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -17,7 +17,7 @@ all: sql/$(EXTENSION)--$(EXTVERSION).sql
sql/$(EXTENSION)--$(EXTVERSION).sql: sql/$(EXTENSION).sql
cp $< $@

DATA = $(wildcard sql/*--*.sql) sql/$(EXTENSION)--$(EXTVERSION).sql
DATA = $(wildcard sql/*--*.sql)
EXTRA_CLEAN = sql/$(EXTENSION)--$(EXTVERSION).sql
endif

Expand Down
4 changes: 3 additions & 1 deletion scripts/regress.sh
Expand Up @@ -8,7 +8,6 @@ f () {
Input=test/sql/regress/${Stem}.sql
Expected=test/sql/expected/${Stem}.txt
Actual=test/sql/tmp/${Stem}.txt
mkdir -p test/sql/tmp
psql -vVERBOSITY=terse 2>$Actual >/dev/null <<EOF
\i $Input
\i test/sql/regress/_reset-games.sql
Expand All @@ -23,6 +22,9 @@ EOF
fi
}

rm -rf test/sql/tmp
mkdir -p test/sql/tmp

echo "$(date +%s.%N) [--] BEGIN"
f score-knight
f score-pawn
Expand Down

0 comments on commit c7ad9ac

Please sign in to comment.