aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMichael Ellerman <mpe@ellerman.id.au>2017-11-22 23:15:50 +1100
committerStewart Smith <stewart@linux.vnet.ibm.com>2017-12-18 17:58:32 -0600
commit427cc73b1eab4b4512fbaf623f9a120c6afdf09f (patch)
tree0b4b535bbf49601e222c7972858c96b5d1b44d43 /include
parent8e88ab0e66a201a1d786e7e95c98314bf4e806e7 (diff)
downloadskiboot-427cc73b1eab4b4512fbaf623f9a120c6afdf09f.zip
skiboot-427cc73b1eab4b4512fbaf623f9a120c6afdf09f.tar.gz
skiboot-427cc73b1eab4b4512fbaf623f9a120c6afdf09f.tar.bz2
make check: Make valgrind optional
To (slightly) lower the barrier for contributions, we can make valgrind optional with just a small amount of plumbing. This allows make check to run successfully without valgrind. Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'include')
-rw-r--r--include/skiboot-valgrind.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/include/skiboot-valgrind.h b/include/skiboot-valgrind.h
new file mode 100644
index 0000000..bdeaa8f
--- /dev/null
+++ b/include/skiboot-valgrind.h
@@ -0,0 +1,35 @@
+/* Copyright 2017 IBM Corp.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ * implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef __SKIBOOT_VALGRIND_H
+#define __SKIBOOT_VALGRIND_H
+
+#ifdef USE_VALGRIND
+#include <valgrind/valgrind.h>
+#include <valgrind/memcheck.h>
+#else
+
+#define RUNNING_ON_VALGRIND 0
+
+#define VALGRIND_MAKE_MEM_UNDEFINED(p, len) \
+ do { \
+ (void)(p); \
+ (void)(len); \
+ } while (0)
+
+#endif
+
+#endif /* __SKIBOOT_VALGRIND_H */