Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
remove old autotools files (MapServer#4617)
  • Loading branch information
tbonfort committed Mar 27, 2013
1 parent 849fc0f commit 921b26f
Show file tree
Hide file tree
Showing 25 changed files with 9 additions and 60,058 deletions.
16 changes: 9 additions & 7 deletions Makefile.autotests
@@ -1,30 +1,32 @@
AUTOTEST_OPTS=-strict
PHP_MAPSCRIPT=../../build/mapscript/php/php_mapscript.so

wxs-testcase:
cd msautotest/wxs && export PATH=../../build:$(PATH) && ./run_test.py $(AUTOTEST_OPTS)
cd msautotest/wxs && export PATH=../..:$(PATH) && ./run_test.py $(AUTOTEST_OPTS)

renderers-testcase:
cd msautotest/renderers && export PATH=../../build:$(PATH) && ./run_test.py $(AUTOTEST_OPTS)
cd msautotest/renderers && export PATH=../..:$(PATH) && ./run_test.py $(AUTOTEST_OPTS)

misc-testcase:
cd msautotest/misc && export PATH=../../build:$(PATH) && ./run_test.py $(AUTOTEST_OPTS)
cd msautotest/misc && export PATH=../..:$(PATH) && ./run_test.py $(AUTOTEST_OPTS)

gdal-testcase:
cd msautotest/gdal && export PATH=../../build:$(PATH) && ./run_test.py $(AUTOTEST_OPTS)
cd msautotest/gdal && export PATH=../..:$(PATH) && ./run_test.py $(AUTOTEST_OPTS)

query-testcase:
cd msautotest/query && export PATH=../../build:$(PATH) && ./run_test.py $(AUTOTEST_OPTS)
cd msautotest/query && export PATH=../..:$(PATH) && ./run_test.py $(AUTOTEST_OPTS)

autotest-install:
test -d "msautotest/wxs" || ( git submodule init && git submodule update )

php-testcase:
test -z "$(PHP_MAPSCRIPT)" || (export PHP_MAPSCRIPT_SO="../../build/mapscript/php/php_mapscript.so" && cd msautotest/php && ./run_test.sh)
test -f "$(PHP_MAPSCRIPT)" && (export PHP_MAPSCRIPT_SO="$(PHP_MAPSCRIPT)" && cd msautotest/php && ./run_test.sh)

print-test-results:
@./print-test-results.sh

test:
test:
@$(MAKE) $(MFLAGS) wxs-testcase renderers-testcase misc-testcase gdal-testcase query-testcase
@$(MAKE) print-test-results
@$(MAKE) php-testcase

0 comments on commit 921b26f

Please sign in to comment.