From 04fe1d6cda49b09f955a5621d37bd729ff4f8ea6 Mon Sep 17 00:00:00 2001
From: Pietro Incardona <incardon@mpi-cbg.de>
Date: Wed, 26 Oct 2016 15:09:06 +0200
Subject: [PATCH] Adding command for debugging

---
 CHANGELOG.md                       | 6 ++++++
 Jenkinsfile_examples_test          | 1 +
 example/Grid/3_gray_scott/main.cpp | 2 +-
 3 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index cde86562..30a9c368 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,9 +12,15 @@ All notable changes to this project will be documented in this file.
 	    5_molecular_dynamic use case of symmetric cell-list and verlet list with ghost put
 	    6_complex_usage It show how the flexibility of openfpm can be used to debug your program
 - Plotting system can export graph in svg (to be included in the paper)
+- Defining a domain an invalid domain like Box<2,float> box({0.0,1.0},{0.0,1.0}) (the correct is {0.0,0.0},{1.0,1.0}  )
+           produce dead-lock or unclear error message in SE_CLASS1, not hint is given, added usefull error message
  
 ### Fixed
 - Option NO_POSITION was untested
+- Regression: Examples code compilation was broken on OSX (Affect only 0.5.1)
+              (Internal: Added OSX examples testing in the release pipeline)
+- gray_scott example code (variable not initialized)
+
 
 ### Changes
 
diff --git a/Jenkinsfile_examples_test b/Jenkinsfile_examples_test
index 6b8ba43b..1dd7c385 100644
--- a/Jenkinsfile_examples_test
+++ b/Jenkinsfile_examples_test
@@ -23,6 +23,7 @@ parallel (
           checkout scm
           stage ('build_sb15')
           {
+           sh "export"
            sh "./build.sh $WORKSPACE $NODE_NAME pdata && make install"
           }
 
diff --git a/example/Grid/3_gray_scott/main.cpp b/example/Grid/3_gray_scott/main.cpp
index 19cf14a1..932a15a3 100644
--- a/example/Grid/3_gray_scott/main.cpp
+++ b/example/Grid/3_gray_scott/main.cpp
@@ -261,7 +261,7 @@ int main(int argc, char* argv[])
 	//! \cond [time stepping] \endcond
 
 	// sync the ghost
-	size_t count;
+	size_t count = 0;
 	Old.template ghost_get<U,V>();
 
 	// because we assume that spacing[x] == spacing[y] we use formula 2
-- 
GitLab