Repository: tajo Updated Branches: refs/heads/branch-0.11.0 8f2620871 -> 0e0c50170
TAJO-1871: '-DskipTests' flag does not work. Project: http://git-wip-us.apache.org/repos/asf/tajo/repo Commit: http://git-wip-us.apache.org/repos/asf/tajo/commit/0e0c5017 Tree: http://git-wip-us.apache.org/repos/asf/tajo/tree/0e0c5017 Diff: http://git-wip-us.apache.org/repos/asf/tajo/diff/0e0c5017 Branch: refs/heads/branch-0.11.0 Commit: 0e0c5017092a3b028022427e0658265991f04140 Parents: 8f26208 Author: Jihoon Son <[email protected]> Authored: Tue Sep 22 11:35:55 2015 +0900 Committer: Jihoon Son <[email protected]> Committed: Tue Sep 22 11:35:55 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/0e0c5017/CHANGES ---------------------------------------------------------------------- diff --git a/CHANGES b/CHANGES index 1dca011..d50037a 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/0e0c5017/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 4983984..af097a8 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>
