Repository: tajo Updated Branches: refs/heads/master 21b4797e2 -> 08def97c4
TAJO-1871: '-DskipTests' flag does not work. Closes #771 Project: http://git-wip-us.apache.org/repos/asf/tajo/repo Commit: http://git-wip-us.apache.org/repos/asf/tajo/commit/08def97c Tree: http://git-wip-us.apache.org/repos/asf/tajo/tree/08def97c Diff: http://git-wip-us.apache.org/repos/asf/tajo/diff/08def97c Branch: refs/heads/master Commit: 08def97c45140d8ffcf50eeef989e2b5760a2195 Parents: 21b4797 Author: Jihoon Son <[email protected]> Authored: Tue Sep 22 11:27:26 2015 +0900 Committer: Jihoon Son <[email protected]> Committed: Tue Sep 22 11:27:26 2015 +0900 ---------------------------------------------------------------------- CHANGES | 2 + tajo-storage/tajo-storage-pgsql/pom.xml | 58 +++++++++++++++++++++++++--- 2 files changed, 55 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tajo/blob/08def97c/CHANGES ---------------------------------------------------------------------- diff --git a/CHANGES b/CHANGES index 2bead97..a7eed33 100644 --- a/CHANGES +++ b/CHANGES @@ -273,6 +273,8 @@ Release 0.11.0 - unreleased BUG FIXES + TAJO-1871: '-DskipTests' flag does not work. (jihoon) + TAJO-1869: Incorrect result when sorting table with small files. (jinho) TAJO-1846: Python temp directory path should be selected differently based http://git-wip-us.apache.org/repos/asf/tajo/blob/08def97c/tajo-storage/tajo-storage-pgsql/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-storage/tajo-storage-pgsql/pom.xml b/tajo-storage/tajo-storage-pgsql/pom.xml index 2e6e61d..50f3d88 100644 --- a/tajo-storage/tajo-storage-pgsql/pom.xml +++ b/tajo-storage/tajo-storage-pgsql/pom.xml @@ -223,11 +223,12 @@ <profiles> <profile> - <!-- testing-postgresql-server only supports x86-64 --> - <id>64bit-tests</id> + <!-- testing-postgresql-server only supports x86-64 on linux environment --> + <id>linux-x86_64-tests</id> <activation> <os> - <arch>x86_64</arch> + <name>linux</name> + <arch>x86_64</arch> </os> </activation> <build> @@ -235,8 +236,55 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> - <configuration> - <skipTests>false</skipTests> + <configuration combine.self="override"> + <systemProperties> + <tajo.test>TRUE</tajo.test> + </systemProperties> + <argLine>-Xms512m -Xmx1024m -XX:MaxPermSize=128m -Dfile.encoding=UTF-8</argLine> + </configuration> + </plugin> + </plugins> + </build> + </profile> + <profile> + <!-- testing-postgresql-server only supports amd64 on linux environment --> + <id>linux-amd64-tests</id> + <activation> + <os> + <name>linux</name> + <arch>amd64</arch> + </os> + </activation> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration combine.self="override"> + <systemProperties> + <tajo.test>TRUE</tajo.test> + </systemProperties> + <argLine>-Xms512m -Xmx1024m -XX:MaxPermSize=128m -Dfile.encoding=UTF-8</argLine> + </configuration> + </plugin> + </plugins> + </build> + </profile> + <profile> + <!-- testing-postgresql-server only supports x86-64 on mac os environment --> + <id>macos-x86_64-tests</id> + <activation> + <os> + <name>mac os x</name> + <arch>x86_64</arch> + </os> + </activation> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration combine.self="override"> <systemProperties> <tajo.test>TRUE</tajo.test> </systemProperties>
