You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mnemonic.apache.org by ga...@apache.org on 2016/11/04 21:27:15 UTC

[1/2] incubator-mnemonic git commit: MNEMONIC-147: Add cmd of durable native computing sort to README

Repository: incubator-mnemonic
Updated Branches:
  refs/heads/master 5dbb34da6 -> 1af3dc1a9


MNEMONIC-147\uff1a Add cmd of durable native computing sort to README


Project: http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/commit/dd981eb9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/tree/dd981eb9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/diff/dd981eb9

Branch: refs/heads/master
Commit: dd981eb9283d3fce2d443b90c4d3c0e60c6ad601
Parents: 5dbb34d
Author: Wang, Gang(Gary) <ga...@intel.com>
Authored: Fri Nov 4 14:15:38 2016 -0700
Committer: Wang, Gang(Gary) <ga...@intel.com>
Committed: Fri Nov 4 14:15:38 2016 -0700

----------------------------------------------------------------------
 README.md | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/blob/dd981eb9/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index be3fea1..9f5a776 100644
--- a/README.md
+++ b/README.md
@@ -281,6 +281,9 @@ To run several test cases:
   
   $ # a testcase for module "mnemonic-computing-services/mnemonic-utilities-service" that requires 'pmalloc' memory service to pass
   $ mvn -Dtest=DurableSinglyLinkedListNGPrintTest test -pl mnemonic-computing-services/mnemonic-utilities-service -DskipTests=false
+
+  $ # a testcase for module "mnemonic-computing-services/mnemonic-utilities-service" that requires 'pmalloc' memory service to pass
+  $ mvn -Dtest=DurableSinglyLinkedListNGSortTest test -pl mnemonic-computing-services/mnemonic-utilities-service -DskipTests=false
 ```
 
 ### Where is the document ?


[2/2] incubator-mnemonic git commit: MNEMONIC-148: Make runall script support durable native computing sort testcase

Posted by ga...@apache.org.
MNEMONIC-148\uff1a Make runall script support durable native computing sort testcase


Project: http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/commit/1af3dc1a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/tree/1af3dc1a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/diff/1af3dc1a

Branch: refs/heads/master
Commit: 1af3dc1a99881d81a6d267b3cdb2a5b6857029f9
Parents: dd981eb
Author: Wang, Gang(Gary) <ga...@intel.com>
Authored: Fri Nov 4 14:23:23 2016 -0700
Committer: Wang, Gang(Gary) <ga...@intel.com>
Committed: Fri Nov 4 14:23:23 2016 -0700

----------------------------------------------------------------------
 build-tools/runall.sh | 10 ++++++++++
 1 file changed, 10 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/blob/1af3dc1a/build-tools/runall.sh
----------------------------------------------------------------------
diff --git a/build-tools/runall.sh b/build-tools/runall.sh
index 0d3a17c..9e277ce 100755
--- a/build-tools/runall.sh
+++ b/build-tools/runall.sh
@@ -104,5 +104,15 @@ echo [ERROR] This test case requires \"pmalloc\" memory service to pass, please
 exit 1
 fi
 echo [SUCCESS] Test case DurableSinglyLinkedListNGPrintTest for \"mnemonic-computing-services/mnemonic-utilities-service\" is completed!
+
+echo [INFO] Running DurableSinglyLinkedListNGSortTest for \"mnemonic-computing-services/mnemonic-utilities-service\"...
+mvn -Dtest=DurableSinglyLinkedListNGSortTest test -pl mnemonic-computing-services/mnemonic-utilities-service -DskipTests=false > testlog/DurableSinglyLinkedListNGSortTest.log
+if [ $? -gt 0 ]
+then
+echo [ERROR] This test case requires \"pmalloc\" memory service to pass, please check if \"pmalloc\" has been configured correctly! If \"pmalloc\" is installed, please refer to testlog/DurableSinglyLinkedListNGSortTest.log for detailed information.
+exit 1
+fi
+echo [SUCCESS] Test case DurableSinglyLinkedListNGSortTest for \"mnemonic-computing-services/mnemonic-utilities-service\" is completed!
+
 echo [DONE] All test cases are completed! Log files are available under folder testlog!
 exit 0